-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 960 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
{
"background": {
"scripts": [
"defines.js",
"inject.js",
"jquery-1.10.2.min.js",
"scrobbler.js"
]
},
"browser_action": {
"default_icon": "bar_icon.png",
"default_popup": "home.html"
},
"content_scripts": [
{
"js": ["connectors/dummy.js"],
"matches": ["\u003Call_urls>"]
}
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"description": "Add songs from any music player to your Spotify playlists",
"icons": {
"128": "icon128.png"
},
"manifest_version": 2,
"name": "Add to Spotify",
"permissions": [
"tabs",
"notifications",
"https://ws.audioscrobbler.com/2.0/",
"https://gdata.youtube.com/feeds/api/videos/",
"http://*/",
"https://*/",
"storage"
],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.1.0",
"web_accessible_resources": ["icon128.png"]
}