-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
50 lines (50 loc) · 1.27 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
{
"manifest_version": 3,
"name": "Clear Space",
"version": "0.0.1",
"description": "Remove distractions from short form content and helps to focus on the productive things that matter.",
"icons":{
"16":"images/icon.png",
"32":"images/icon.png",
"48":"images/icon.png",
"64":"images/icon.png",
"128":"images/icon.png"
},
"permissions": [
"declarativeNetRequestWithHostAccess",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"scripting",
"tabs"
],
"host_permissions": ["https://*.youtube.com/*","https://.instagram.com/*"],
"background": {
"service_worker": "scripts/background.js"
},
"content_scripts": [
{
"matches": ["https://*.youtube.com/*","https://*.instagram.com/*"],
"js": ["scripts/main.js"],
"css": ["popup.css"]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Clear Space"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules_1.json"
}
]
},
"web_accessible_resources": [
{
"resources": ["redirect.html"],
"matches": ["https://*.youtube.com/*","https://*.instagram.com/*"]
}
]
}