forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
33 lines (28 loc) · 930 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
{
"name": "Last.fm Scrobbler + Napster",
"version": "0.5.1",
"description": "Scrobble music videos all around the web!",
"icons": { "128": "icon128.png" },
"background_page": "background.html",
"options_page": "options.html",
"permissions": [
"tabs",
"notifications",
"http://ws.audioscrobbler.com/",
"http://post.audioscrobbler.com/",
"http://post2.audioscrobbler.com/",
"http://gdata.youtube.com/feeds/api/videos/"
],
"content_scripts": [
{
"matches": [ "http://music.napster.com/*", "https://music.napster.com/*" ],
"js": [ "napster.js" ]
}
// Disabling YouTube for now as some state is stored in scrobbler.js, and I'm wary of interactions
/*{
"matches": ["http://www.youtube.com/watch*"],
"js": ["jquery-1.4.2.min.js", "jquery.dump.js", "youtube.js"],
"css": ["youtube.css"]
}*/
]
}