-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (49 loc) · 1.2 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
{
"browser_action": {
"default_icon": {
"128": "img/logo.png"
},
"default_title": "Acid Spotify Hacker",
"default_popup": "html/popup.html"
},
"background": {
"persistent": true,
"scripts": [
"js/background.js"
]
},
"content_scripts": [
{
"run_at": "document_start",
"all_frames": true,
"matches": [
"https://open.spotify.com/*"
],
"js": [
"js/popup.js"
],
"css": [
"style.css"
]
}
],
"description": "Acid Spotify Hacker",
"icons": {
"128": "img/logo.png"
},
"manifest_version": 2,
"name": "Acid Spotify Hacker",
"permissions": [
"tabs", "<all_urls>",
"webRequest",
"webNavigation",
"webRequestBlocking",
"*://open.spotify.com/*",
"*://audio-ak-spotify-com.akamaized.net/*",
"https://*.googlesyndication.com/*",
"*://audio-akp-quic-spotify-com.akamaized.net/*",
"*://gae-spclient.spotify.com/*",
"*://*.audio-fa.scdn.co/*"
],
"version": "3.396"
}