-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (31 loc) · 940 Bytes
/
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
{
"manifest_version": 2,
"name": "Youtube Zen",
"version": "1.0.3",
"description": "Boosts productivity by removing certain distracting elements on youtube.",
"homepage_url": "https://github.com/Zackyization/youtube-zen",
"browser_action": {
"browser_style": true,
"default_title": "Youtube Zen",
"default_popup": "popup/youtube-zen-popup.html"
},
"background" : {
"scripts": ["background/youtube-zen-background.js"]
},
"content_scripts": [{
"matches": ["*://*.youtube.com/*"],
"js": ["content_scripts/youtube-zen.js"],
"css": ["css/youtube-home.css"],
"run_at": "document_idle",
"all_frames": true
}],
"icons": {
"48": "icons/youtube_zen_icon_square.svg",
"96": "icons/youtube_zen_icon_square.svg"
},
"permissions": [
"*://*.youtube.com/*",
"storage",
"tabs"
]
}