-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
48 lines (48 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
47
48
{
"name": "Analytics & Ad Blocker",
"description": "An Analytics & Ad Blocker for a more sustainable internet.",
"version": "0.0.3.2",
"manifest_version": 3,
"options_page": "options.html",
"declarative_net_request": {
"rule_resources": [{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}]
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/16x16.png",
"32": "/images/32x32.png",
"48": "/images/48x48.png",
"128": "/images/128x128.png"
}
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"performance.js",
"Chart.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"declarativeNetRequest"
],
"icons": {
"16": "/images/16x16.png",
"32": "/images/32x32.png",
"48": "/images/48x48.png",
"128": "/images/128x128.png"
}
}