-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
68 lines (68 loc) · 1.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "__MSG_name__",
"short_name": "__MSG_short_name__",
"manifest_version": 2,
"version": "3.2.4.5",
"description": "__MSG_description__",
"default_locale": "en",
"browser_action": {
"default_icon": "48.png",
"default_title": "__MSG_default_title__",
"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>",
"tabCapture"
],
"icons": {
"64": "64.png",
"48": "48.png",
"32": "32.png",
"16": "16.png",
"128": "128.png"
},
"options_page": "options.html",
"options_ui": {
"chrome_style": true,
"page": "option.html"
},
"web_accessible_resources": [
"playerquality.js",
"playerfs.js",
"playernoblack.js",
"playerautopauseplay.js",
"loopone.js",
"audio/images/light.png",
"audio/images/drop.png",
"audio/images/old.png",
"audio/images/fog.png",
"audio/images/abstract.png",
"audio/images/imagination.png",
"audio/images/hearts.svg",
"audio/images/waterflow.png",
"audio/images/neon.png",
"audio/images/fisheye.png",
"audio/images/scanline.png"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}