-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
50 lines (50 loc) · 919 Bytes
/
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
{
"name": "PressForward Nominate This",
"version": "0.2",
"description": "Nominate This",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png"
},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"web_accessible_resources": [
"nomthis.js",
"pell.js",
"submit.js",
"nomthis.css.js",
"settings.js"
],
"permissions": [
"storage",
"declarativeContent",
"activeTab",
"clipboardRead",
"background",
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
"background.js",
"handler.js",
"nomthis-init.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*?page=pf-tools",
"https://*/*?page=pf-tools",
"http://*/*?page=pf-options",
"https://*/*?page=pf-options"
],
"js": [
"populate_settings.js"
]
}
],
"content_security_policy": "script-src 'self' https:* 'unsafe-inline'; object-src 'self'"
}