-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
28 lines (28 loc) · 764 Bytes
/
manifest.json
File metadata and controls
28 lines (28 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "Line Clipper for GitHub",
"version": "1.0.2",
"description": "Effortlessly copy file paths with their respective line numbers when working on GitHub.",
"content_scripts": [{
"js": ["traverser.js"],
"matches": ["*://*/*"],
"include_globs": ["*://*github.*/*"]
}],
"background": {
"scripts": ["background.js"]
},
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"browser_action": {
"default_icon": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
}
},
"manifest_version": 2
}