-
Notifications
You must be signed in to change notification settings - Fork 17
/
manifest.json
executable file
·57 lines (57 loc) · 1.33 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
51
52
53
54
55
56
57
{
"name": "AMP Readiness Tool",
"short_name": "AMP Readiness Tool",
"author": "Jeffrey Jose, Phillip Kriegel, Frank Broersen",
"homepage_url": "https://github.com/ampproject/amp-readiness",
"description": "Identify web technologies that are relevant to AMP",
"version": "4.0.2",
"default_locale": "en",
"manifest_version": 2,
"icons": {
"16": "images/amp-readiness-new.png",
"48": "images/amp-readiness-new.png",
"128": "images/amp-readiness-new.png"
},
"page_action": {
"default_icon": "images/amp-readiness-new.png",
"default_title": "AMP Readiness Tool",
"default_popup": "html/popup.html"
},
"background": {
"page": "html/background.html",
"persistent": true
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"node_modules/webextension-polyfill/dist/browser-polyfill.js",
"js/content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"js/inject.js"
],
"options_page": "html/options.html",
"options_ui": {
"page": "html/options.html",
"open_in_tab": false
},
"permissions": [
"https://www.google-analytics.com/",
"storage",
"cookies",
"storage",
"tabs",
"webRequest",
"webNavigation",
"http://*/*",
"https://*/*"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}