-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 1.45 KB
/
manifest.json
File metadata and controls
47 lines (47 loc) · 1.45 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"manifest_version": 2,
"name": "GitHub Helper",
"author": "GitHub",
"description": "Get a better idea about github",
"version": "1.2.3",
"permissions": [
"tabs", "storage"
],
"icons": {
"128": "res/icon/icon.png",
"64": "res/icon/icon.png",
"32": "res/icon/icon.png",
"16": "res/icon/icon.png"
},
"browser_action": {
"default_icon": {
"19": "res/icon/icon.png",
"38": "res/icon/icon.png"
}
},
"content_scripts": [{
"matches": ["https://github.com/*", "http://github.com/*"],
"css": ["res/css/contents/file_icon.css", "res/devicons/css/devicons.css"],
"js": ["res/js/contents/file_icon.js"],
"run_at": "document_end"
}, {
"matches": ["https://github.com/*", "http://github.com/*"],
"js": ["res/js/common_content.js", "res/js/contents/trending.js"],
"run_at": "document_end"
}, {
"matches": ["https://github.com/*", "http://github.com/*"],
"css": [ "res/css/contents/avatar.css" ],
"js": ["res/js/lib/jquery.min.js", "res/js/contents/avatar.js"],
"run_at": "document_end"
}, {
"matches": ["https://github.com/*", "http://github.com/*"],
"css": [ "res/css/contents/diff_helper.css" ],
"js": ["res/js/lib/jquery.min.js", "res/js/contents/diff_helper.js"],
"run_at": "document_end"
}],
"background": {
"scripts": ["res/js/background.js"]
},
"options_page": "res/html/options.html",
"web_accessible_resources": ["res/devicons/fonts/*.*"]
}