-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
54 lines (54 loc) · 1.42 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
{
"name": "Soundcloud Cast",
"description": "Cast Soundcloud to your Chromecast",
"author": "Steven Tucci",
"version": "2.5",
"manifest_version": 2,
"icons": {
"16": "sc_square_16.png",
"48": "sc_square_52.png",
"128": "sc_square_120.png"
},
"permissions": [
"tabs",
"http://soundcloud.com/*",
"https://soundcloud.com/*",
"http://www.soundcloud.com/*",
"https://www.soundcloud.com/*",
"http://*.sndcdn.com/*",
"https://*.sndcdn.com/*"
],
"options_page": "",
"page_action": {
"default_name": "Soundcloud cast"
},
"content_scripts": [
{
"js": [
"app/inject/inject.js"
],
"css": [
"app/inject/styles.css"
],
"matches": [
"http://soundcloud.com/*",
"http://www.soundcloud.com/*",
"https://soundcloud.com/*",
"https://www.soundcloud.com/*"
]
}
],
"externally_connectable": {
"matches": ["*://*.soundcloud.com/*"]
},
"background": {
"persistent": true,
"page": "app/background/background.html"
},
"web_accessible_resources": [
"app/inject/img/*.svg",
"app/inject/*.js",
"app/inject/*.css"
],
"content_security_policy": "script-src 'self'; object-src 'self'"
}