forked from scpwiki/S-CSS-P
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
37 lines (36 loc) · 923 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
{
"name": "S-CSS-P",
"version": "1.1.7",
"description": "A stylesheet picker for The SCP Wiki",
"manifest_version": 2,
"permissions": [
"storage",
"http://*.scp-wiki.net/",
"http://scp-wiki.wikidot.com/",
"https://*.scp-wiki.net/",
"https://scp-wiki.wikidot.com/",
"http://scpnet.org/"
],
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
},
"content_scripts": [
{
"matches": ["http://*.scp-wiki.net/*","http://scp-wiki.wikidot.com/*","https://*.scp-wiki.net/*","https://scp-wiki.wikidot.com/*", "http://scpnet.org/*"],
"js": ["main.js", "options.js"],
"all_frames": true,
"run_at": "document_end"
}
],
"web_accessible_resources": ["/css/*", "/img/*"],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png" }
}