-
Notifications
You must be signed in to change notification settings - Fork 31
/
manifest.json
57 lines (57 loc) · 1.45 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": "__MSG_appName__",
"version": "0.1.8",
"description": "__MSG_appDesc__",
"default_locale": "en",
"permissions": ["tabs","declarativeNetRequest", "storage","declarativeNetRequestFeedback"],
"declarative_net_request": {
"rule_resources": [
{
"id": "blockLIST",
"enabled": true,
"path": "/rules/default.json"
},
{
"id": "advLIST",
"enabled": false,
"path": "/rules/adv.json"
},
{
"id": "antiprnLIST",
"enabled": false,
"path": "/rules/antiprn.json"
},
{
"id": "suspLIST",
"enabled": false,
"path": "/rules/susp.json"
},
{
"id":"antitrackLIST",
"enabled":false,
"path":"/rules/antitrack.json"
}
]
},
"icons": { "48": "./icons/ad48.png", "64": "./icons/ad64.png" },
"content_scripts": [
{
"js": ["yt_blocks.js","content.js"],
"run_at": "document_end",
"matches": ["https://*/*","http://*/*"]
}
],
"action": {
"default_popup": "Popup.html",
"default_title": "RR Adblocker"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https://*/*",
"http://*/*"
],
"manifest_version": 3
}