forked from da2x/amp2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (40 loc) · 1.05 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
{
"manifest_version": 2,
"version": "2.1.0",
"name": "Redirect AMP to HTML",
"description": "Automatically redirects AMP pages to their canonical HTML equivalent.",
"short_name": "amp2html",
"author": "Daniel Aleksandersen",
"homepage_url": "https://www.daniel.priv.no/web-extensions/amp2html.html",
"icons": {
"48": "assets/icon_48.png",
"256": "assets/icon_256.png"
},
"permissions": [
"*://t.co/*",
"https://bing-amp.com/c/*",
"https://*.bing-amp.com/c/*",
"https://cdn.ampproject.org/c/*",
"https://*.cdn.ampproject.org/c/*",
"https://www.bing.com/amp/*",
"https://www.google.com/amp/*",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": [
"scripts/redirector.js"
]
},
"applications": {
"gecko": {
"id": "{569456be-2850-4f7e-b669-71e55140ee0a}",
"strict_min_version": "60.0"
}
},
"incognito": "spanning",
"content_scripts": [ {
"js": ["scripts/amp2html.js"],
"matches": ["http://*/*","https://*/*"],
"run_at": "document_end"
} ] }