forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (37 loc) · 1.11 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
{
"name": "Last.fm Scrobbler",
"version": "1.22",
"description": "Scrobble music all around the web!",
"icons": {
"128": "icon128.png"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"web_accessible_resources": [
"icon128.png",
"connectors/jango-dom-inject.js",
"connectors/spotify-dom-inject.js",
"connectors/plugdj-dom-inject.js"
],
"background": {
"scripts": ["defines.js", "background-ga.js", "inject.js", "md5.js", "jquery-1.6.1.min.js", "jquery.dump.js", "scrobbler.js"]
},
"options_page": "options.html",
"permissions": [
"tabs",
"notifications",
"https://ws.audioscrobbler.com/2.0/",
"https://gdata.youtube.com/feeds/api/videos/",
"http://*/",
"https://*/"
],
"page_action": {
"chromeBroken": "remove this line after issue #86449 is resolved"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["connectors/dummy.js"]
}
]
}