forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (42 loc) · 1.13 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
{
"name": "Last.fm Scrobbler",
"version": "1.44",
"description": "Scrobble music all around the web!",
"icons": {
"128": "icon128.png"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' https://www.google-analytics.com/analytics.js; object-src 'self'",
"web_accessible_resources": [
"icon128.png",
"connectors/jango-dom-inject.js",
"connectors/plugdj-dom-inject.js",
"connectors/soundcloud-dom-inject.js",
"connectors/vk-dom-inject.js"
],
"background": {
"scripts": [
"vendor/require.js", "core/background/requirejs-config.js",
"core/background/main.js"
]
},
"options_page": "options/options.html",
"permissions": [
"tabs",
"notifications",
"storage",
"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"]
}
]
}