-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.21 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1.21 KB
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
{
"manifest_version": 3,
"name": "WikimediaDebug",
"description": "Control the X-Wikimedia-Debug header on HTTP requests.",
"author": "Ori Livneh",
"version": "3.2.0",
"icons": {
"512": "images/logo.png"
},
"action": {
"default_icon": "images/icon-lightmode-128.png",
"default_title": "WikimediaDebug",
"default_popup": "popup.html",
"theme_icons": [ {
"dark": "images/icon-lightmode-128.png",
"light": "images/icon-darkmode-128.png",
"size": 128
} ]
},
"background": {
"service_worker": "service-worker.js",
"scripts": [ "service-worker.js" ]
},
"permissions": [
"alarms",
"storage",
"tabs",
"webRequest",
"declarativeNetRequestWithHostAccess"
],
"host_permissions": [
"*://*.mediawiki.org/*",
"*://*.wikidata.org/*",
"*://*.wikifunctions.org/*",
"*://*.wikibooks.org/*",
"*://*.wikimedia.org/*",
"*://*.wikinews.org/*",
"*://*.wikipedia.org/*",
"*://*.wikiquote.org/*",
"*://*.wikisource.org/*",
"*://*.wikiversity.org/*",
"*://*.wikivoyage.org/*",
"*://*.wiktionary.org/*",
"*://*.beta.wmcloud.org/*",
"*://*.beta.wmflabs.org/*"
],
"browser_specific_settings": {
"gecko": {
"id": "wikimediadebug@wikimedia.org",
"strict_min_version": "115.0"
}
}
}