-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 859 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 859 Bytes
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
{
"name": "Zen YouTube: Distraction free youtube",
"version": "3.0.0",
"manifest_version": 3,
"description": "Block YouTube Shorts, feed, recommendations, and comments to stay focused and reduce distractions.",
"homepage_url": "https://github.com/vishnugt/Zen-Youtube",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://www.youtube.com/*"
],
"action": {
"default_popup": "popup/popup.html"
},
"content_scripts": [{
"run_at": "document_start",
"matches": [
"https://www.youtube.com/*"
],
"js": [
"inject.js"
],
"all_frames": true
}
]
}