-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 955 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
37
38
39
40
41
42
43
44
45
46
{
"name": "Eye Care Filters for YouTube",
"short_name": "Eye Care Filters for YouTube",
"manifest_version": 2,
"version": "1.0.0.9",
"description": "Eye Care Filters filters for YouTube",
"browser_action": {
"default_icon": "48.png",
"default_title": "Eye Care Filters for YouTube",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*", "*://*.youtube-nocookie.com/*"
],
"css": [
"app_player.css"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"tabs",
"storage",
"<all_urls>",
"webNavigation"
],
"icons": {
"64": "64.png",
"48": "48.png",
"32": "32.png",
"16": "16.png",
"128": "128.png"
},
"web_accessible_resources": [
],
"content_security_policy": "script-src 'self'; object-src 'self'"
}