forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
86 lines (81 loc) · 2.34 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "Last.fm Scrobbler",
"version": "1.6",
"description": "Scrobble music all around the web!",
"icons": {
"128": "icon128.png"
},
"background_page": "background.html",
"options_page": "options.html",
"permissions": [
"tabs",
"notifications",
"http://ws.audioscrobbler.com/2.0/",
"http://gdata.youtube.com/feeds/api/videos/"
],
"page_action": {
"chromeBroken": "remove this line after issue #86449 is resolved"
},
"content_scripts": [
/* Deactivated; needs to be ported to the 1.0 core
{
"matches": [ "http://music.napster.com/*", "https://music.napster.com/*" ],
"js": [ "napster.js" ]
},
*/
{
"matches": ["<all_urls>"],
"js": ["dummy.js"]
},
{
"matches": ["*://www.ttnetmuzik.com.tr/*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "ttnet.js"]
},
{
"matches": ["*://www.youtube.com/watch*", "*://www.youtube.com/user/*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "youtube.js"],
"css": ["youtube.css"],
"run_at" : "document_start"
},
{
"matches": ["*://www.thesixtyone.com/*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "61.js"]
},
{
"matches": ["*://music.google.com/*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "googlemusic.js"]
},
{
"matches": ["*://www.myspace.com/music/player*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "myspace.js"]
},
{
"matches": ["*://www.fftunes.com/*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "fftunes.js"]
},
{
"matches": ["*://fizy.com/*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "fizy.js"]
},
{
"matches": ["http://ghostly.com/discovery/play"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "ghostly.js"],
"css": ["ghostly.css"]
},
{
"matches": ["*://*.bandcamp.com/*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "bandcamp.js"],
"run_at": "document_idle"
},
{
"matches": ["*://plus.google.com/*youtube/player"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "google+.js"],
"run_at": "document_idle"
},
{
"matches": ["*://www.pandora.com/*"],
"js": ["jquery-1.6.1.min.js", "jquery.dump.js", "pandora.js"],
"run_at" : "document_start"
}
]
}