-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (50 loc) · 1.07 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
{
"manifest_version": 3,
"name": "GW2 Wiki Dark Mode",
"version": "0.3.0",
"description": "Enable the wiki's Vector dark theme automatically when loading a page without being logged in.",
"action": {
"default_icon": "src/icons/gw2-dark-128.png",
"default_title": "Dark Mode Toggle"
},
"background": {
"scripts": [
"src/browser-polyfill.js",
"src/background/background.js"
]
},
"icons": {
"16": "src/icons/gw2-dark-16.png",
"48": "src/icons/gw2-dark-48.png",
"128": "src/icons/gw2-dark-128.png"
},
"homepage_url": "https://github.com/ellielle/gw2-wiki-dark",
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"*://*.guildwars2.com/*"
],
"content_scripts": [
{
"matches": [
"*://*.guildwars2.com/*"
],
"js": [
"src/browser-polyfill.js",
"src/content_scripts/content.js"
],
"run_at": "document_start"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"browser_specific_settings": {
"gecko": {
"id": "gw2dark@ellielle",
"strict_min_version": "112.0"
}
}
}