forked from ghostery/ghostery-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
103 lines (103 loc) · 2.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "52.0"
}
},
"author": "Ghostery",
"name": "__MSG_name__",
"short_name": "Ghostery",
"version": "8.3.4",
"version_name": "8.3.4",
"default_locale": "en",
"description": "__MSG_short_description__",
"icons": {
"16": "app/images/icon16.png",
"48": "app/images/icon48.png",
"128": "app/images/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "app/images/icon19_off.png",
"38": "app/images/icon38_off.png"
},
"default_title": "Ghostery"
},
"options_ui": {
"page": "app/templates/hub.html",
"open_in_tab": true
},
"options_page": "app/templates/hub.html",
"content_scripts": [
{
"all_frames": false,
"js": [
"dist/ghostery_dot_com.js"
],
"css": [
"dist/css/ghostery_dot_com_css.css"
],
"matches": [
"https://www.ghostery.com/*",
"https://apps.ghostery.com/*",
"https://staging-apps.ghostery.com/*",
"https://gcache.ghostery.com/*",
"https://staging-gcache.ghostery.com/*"
],
"run_at": "document_idle"
},
{
"all_frames": false,
"js": [
"dist/account_pages.js"
],
"matches": [
"https://account.ghostery.com/*",
"https://account.ghosterystage.com/*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [
"dist/content_script_bundle.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"*://*/_/chrome/newtab*"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"webNavigation",
"webRequest",
"webRequestBlocking",
"cookies",
"tabs",
"http://*/*",
"https://*/*",
"ws://*/*",
"wss://*/*",
"storage"
],
"background": {
"scripts": [
"dist/background.js"
],
"persistent": true
},
"minimum_edge_version": "33.14281.1000.0",
"minimum_chrome_version": "58",
"minimum_opera_version": "45",
"web_accessible_resources": [
"app/images/*",
"dist/css/rewards_styles.css"
]
}