-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest.json
112 lines (107 loc) · 3.32 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.5",
"default_locale": "en",
"background_page": "views/background.html",
"options_page": "views/settings.html",
"omnibox": { "keyword" : "lyrics" },
"icons": {
"128": "images/icon128.png",
"16": "images/icon16.png",
"48": "images/icon48.png"
},
"content_scripts": [
{
"matches": ["http://www.youtube.com/watch*", "https://www.youtube.com/watch*"],
"run_at": "document_end",
"css": ["contentScripts/YouTube/style.css"],
"js": [
"javascripts/jquery-1.6.1.min.js",
"javascripts/lyricsPlugin.js",
"contentScripts/YouTube/script.js",
"javascripts/contentScriptExecuter.js"
]
},
{
"matches": [
"http://www.last.fm/music/*/_/*",
"http://www.lastfm.de/music/*/_/*",
"http://www.lastfm.es/music/*/_/*",
"http://www.lastfm.fr/music/*/_/*",
"http://www.lastfm.it/music/*/_/*",
"http://www.lastfm.jp/music/*/_/*",
"http://www.lastfm.pl/music/*/_/*",
"http://www.lastfm.com.br/music/*/_/*",
"http://www.lastfm.ru/music/*/_/*",
"http://www.lastfm.se/music/*/_/*",
"http://www.lastfm.com.tr/music/*/_/*",
"http://cn.last.fm/music/*/_/*"
],
"run_at": "document_end",
"css": ["contentScripts/Last.fm/style.css"],
"js": [
"javascripts/jquery-1.6.1.min.js",
"javascripts/lyricsPlugin.js",
"contentScripts/Last.fm/script.js",
"javascripts/contentScriptExecuter.js"
]
},
{
"matches": [
"http://www.last.fm/listen*",
"http://www.lastfm.de/listen*",
"http://www.lastfm.es/listen*",
"http://www.lastfm.fr/listen*",
"http://www.lastfm.it/listen*",
"http://www.lastfm.jp/listen*",
"http://www.lastfm.pl/listen*",
"http://www.lastfm.com.br/listen*",
"http://www.lastfm.ru/listen*",
"http://www.lastfm.se/listen*",
"http://www.lastfm.com.tr/listen*",
"http://cn.last.fm/listen*"
],
"run_at": "document_end",
"css": ["contentScripts/Last.fm-radio/style.css"],
"js": [
"javascripts/jquery-1.6.1.min.js",
"javascripts/lyricsPlugin.js",
"contentScripts/Last.fm-radio/script.js",
"javascripts/contentScriptExecuter.js"
]
},
{
"matches": ["http://grooveshark.com/*"],
"run_at": "document_end",
"css": ["contentScripts/Grooveshark/style.css"],
"js": [
"javascripts/jquery-1.6.1.min.js",
"javascripts/lyricsPlugin.js",
"contentScripts/Grooveshark/script.js",
"javascripts/contentScriptExecuter.js"
]
},
{
"matches": ["http://music.google.com/music/listen*"],
"run_at": "document_end",
"css": ["contentScripts/GoogleMusic/style.css"],
"js": [
"javascripts/jquery-1.6.1.min.js",
"javascripts/lyricsPlugin.js",
"contentScripts/GoogleMusic/script.js",
"javascripts/contentScriptExecuter.js"
]
}
],
"page_action": {
"default_icon": "images/icon48.png",
"default_title": "__MSG_pageActionTitle__"
},
"permissions": [
"tabs",
"*://google.com/search*",
"*://*.google.com/search*",
"http://lyrics.wikia.com/*"
]
}