-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmanifest.json
37 lines (37 loc) · 1.22 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
{
"manifest_version": 2,
"name": "Amazon Cloud Player scrobbler",
"version": "1.1.0",
"description": "Scrobbles songs from Amazon Cloud Player to Last.fm",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": "img/main-icon.png",
"default_popup": "popup.html"
},
"permissions": [
"http://ws.audioscrobbler.com/",
"https://www.amazon.com/",
"https://www.amazon.de/"
],
"background" : {"scripts": ["js/md5.js", "js/lastfm.js", "js/jquery-1.7.min.js", "js/background.js"]},
"content_scripts": [
{
"js": ["js/inject.js"],
"matches": ["https://www.amazon.com/gp/dmusic/mp3/*","https://www.amazon.de/gp/dmusic/mp3/*"]
},
{
"js": ["js/contentscript.js"],
"matches": ["https://www.amazon.com/gp/dmusic/mp3/*", "https://www.amazon.de/gp/dmusic/mp3/*"]
},
{
"js": ["js/jquery-1.7.min.js"],
"matches": ["https://www.amazon.com/gp/dmusic/mp3/*", "https://www.amazon.de/gp/dmusic/mp3/*"],
"run_at": "document_start"
}
]
}