-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
24 lines (24 loc) · 988 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
{
"browser_action": {
"default_icon": "assets/img/icon.png",
"default_popup": "pages/popup.html"
},
"content_scripts": [ {
"css": [ "assets/css/style.css" ],
"exclude_matches": [ "*://www.youtube.com/*&list=*", "*://youtube.com/*&list=*" ],
"js": [ "assets/js/jquery.min.js", "assets/js/channel_list.js", "assets/js/content_script.js" ],
"matches": [ "*://www.youtube.com/*", "*://youtube.com/*" ]
} ],
"description": "Hides related videos, comments and video length by default on Youtube to prevent spoilers.",
"homepage_url": "http://eventvods.com",
"icons": {
"128": "assets/img/icon.png",
"48": "assets/img/favicon.png"
},
"manifest_version": 2,
"name": "Eventvods Spoiler Prevention",
"permissions": ["storage", "*://*.youtube.com/*", "https://www.googleapis.com/*" ],
"short_name": "EV",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.1.10"
}