-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
61 lines (61 loc) · 1.72 KB
/
manifest.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "Github Pull Request Helper",
"version": "2.0.0",
"description": "Helps to make large GitHub pull requests easier to navigate.",
"permissions": [
"activeTab",
"tabs",
"declarativeContent",
"storage",
"webNavigation",
"http://github.com/*",
"https://github.com/*"
],
"background": {
"scripts": [
"js/util.js",
"js/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://github.com/*/pull/*"
],
"js": [
"js/util.js",
"js/github_navigation.js"
]
}
],
"options_page": "options.html",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/PR_Helper_Logo_16.png",
"32": "images/PR_Helper_Logo_32.png",
"48": "images/PR_Helper_Logo_48.png",
"128": "images/PR_Helper_Logo_128.png",
"256": "images/PR_Helper_Logo_256.png",
"512": "images/PR_Helper_Logo_512.png",
"1024": "images/PR_Helper_Logo_1024.png",
"1600": "images/PR_Helper_Logo_1600.png"
}
},
"icons": {
"16": "images/PR_Helper_Logo_16.png",
"32": "images/PR_Helper_Logo_32.png",
"48": "images/PR_Helper_Logo_48.png",
"128": "images/PR_Helper_Logo_128.png",
"256": "images/PR_Helper_Logo_256.png",
"512": "images/PR_Helper_Logo_512.png",
"1024": "images/PR_Helper_Logo_1024.png",
"1600": "images/PR_Helper_Logo_1600.png"
},
"manifest_version": 2
}