forked from Rutuj-Runwal/RR-Adblocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.26 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
{
"name": "__MSG_appName__",
"version": "0.1.6.1",
"description": "__MSG_appDesc__",
"default_locale": "en",
"permissions": ["tabs","declarativeNetRequest", "storage"],
"declarative_net_request": {
"rule_resources": [
{
"id": "blockLIST",
"enabled": true,
"path": "my.json"
},
{
"id": "advLIST",
"enabled": false,
"path": "adv.json"
},
{
"id": "antiprnLIST",
"enabled": false,
"path": "antiprn.json"
},
{
"id": "suspLIST",
"enabled": false,
"path": "susp.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
}