-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
60 lines (60 loc) · 1.53 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
{
"name": "Github Pull Request Helper",
"description": "Helps to make large GitHub pull requests easier to navigate.",
"version": "2.0.0",
"manifest_version": 3,
"background": {
"service_worker": "js/service_worker.js"
},
"content_scripts": [
{
"matches": [
"*://github.com/*/pull/*"
],
"js": [
"js/util.js",
"js/github_navigation.js"
]
}
],
"permissions": [
"activeTab",
"tabs",
"declarativeContent",
"storage",
"webNavigation",
"scripting"
],
"icons": {
"16": "images/PR_Helper_Logo_16.png",
"128": "images/PR_Helper_Logo_128.png",
"512": "images/PR_Helper_Logo_512.png",
"1600": "images/PR_Helper_Logo_1600.png",
"256": "images/PR_Helper_Logo_256.png",
"32": "images/PR_Helper_Logo_32.png",
"48": "images/PR_Helper_Logo_48.png",
"1024": "images/PR_Helper_Logo_1024.png"
},
"options_ui": {
"page": "options.html"
},
"content_security_policy": {},
"options_page": "options.html",
"host_permissions": [
"http://github.com/*",
"https://github.com/*"
],
"action": {
"default_icon": {
"16": "images/PR_Helper_Logo_16.png",
"128": "images/PR_Helper_Logo_128.png",
"512": "images/PR_Helper_Logo_512.png",
"1600": "images/PR_Helper_Logo_1600.png",
"256": "images/PR_Helper_Logo_256.png",
"32": "images/PR_Helper_Logo_32.png",
"48": "images/PR_Helper_Logo_48.png",
"1024": "images/PR_Helper_Logo_1024.png"
},
"default_popup": "popup.html"
}
}