forked from Alex313031/video-adblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.12 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
{
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"author": "Alex313031",
"minimum_chrome_version": "68",
"version": "5.2.7",
"version_name": "5.2.7",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"background": {
"scripts": [
"scripts/unistream.chrome.mv2.v3.0.0.sdk.js",
"scripts/background.js"
]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["scripts/contentscript.js"],
"all_frames": true,
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "Adblock for Youtube™",
"default_popup": "pages/popup.html"
},
"permissions": [
"storage",
"unlimitedStorage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
]
}