forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
53 lines (44 loc) · 996 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "Last.fm Scrobbler",
"version": "1.67.0",
"description": "Scrobble music all around the web!",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"icons/icon128.png",
"connectors/soundcloud-dom-inject.js",
"connectors/vk-dom-inject.js"
],
"background": {
"scripts": [
"vendor/require.min.js", "core/background/requirejs-config.js",
"core/background/main.js"
]
},
"options_page": "options/options.html",
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"permissions": [
"contextMenus",
"tabs",
"notifications",
"storage",
"http://*/",
"https://*/"
],
"page_action": {
"chromeBroken": "remove this line after issue #86449 is resolved"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["connectors/dummy.js"]
}
]
}