forked from raldenhoven/downloadify
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (39 loc) · 1.04 KB
/
manifest.json
File metadata and controls
43 lines (39 loc) · 1.04 KB
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
{
"manifest_version": 2,
"name": "tidalWave",
"version": "0.1",
"description": "TIDAL HiFi downloads",
"icons": { "16" : "icon_16.png",
"48" : "icon_48.png",
"64" : "icon_64.png",
"128": "icon_128.png" },
"permissions":[
"*://audio-pop.tidal.com/*",
"webRequest",
"webRequestBlocking",
"tabs",
"*://api.tidalhifi.com/v1/tracks/*",
"webRequest",
"webRequestBlocking",
"tabs"
],
"background": {
"scripts": ["javascripts/background.js"]
},
"content_security_policy": "script-src 'self'; object-src 'self' https://api.tidalhifi.com/ https://audio-pop.tidal.com/",
"content_scripts": [
{
"matches": [
"*://listen.tidalhifi.com/*"
],
"css": [
"styles/inject.css"
],
"js": [
"javascripts/inject.js",
"javascripts/jquery.js"
],
"all_frames" : true
}
]
}