-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 1.34 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
{
"manifest_version": 2,
"name": "Unified Docs Switcher",
"description": "Automatically redirect to preferred documentation version for many projects",
"author": "Doug Harris",
"version": "1.0.4",
"icons": {
"48": "books48.png",
"128": "books.png"
},
"background": {
"scripts": [
"browser-polyfill.min.js",
"background.js"
]
},
"browser_action": {
"default_icon": "books.png",
"default_title": "Doc Switcher",
"default_popup": "popup/switcher-popup.html"
},
"content_scripts": [
{
"matches": [
"https://docs.celeryq.dev/*",
"https://docs.djangoproject.com/*",
"https://docs.python.org/*",
"https://docs.wagtail.org/*",
"https://www.postgresql.org/docs/*"
],
"js": [
"browser-polyfill.min.js",
"content-script.js"
],
"css": ["doc-switcher.css"]
}
],
"permissions": [
"https://docs.celeryq.dev/*",
"https://docs.djangoproject.com/*",
"https://docs.python.org/*",
"https://docs.wagtail.org/*",
"https://www.postgresql.org/docs/*",
"webRequest",
"webRequestBlocking",
"storage"
]
}