-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
42 lines (42 loc) · 1.06 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
{
"name": "Musixmatch Lyrics for Spotify (Unofficial)",
"short_name": "Spotify Translate",
"description": "Automatically load Musixmatch lyrics for Spotify Web Player",
"author": "Eric Aguilera",
"version": "1.1",
"manifest_version": 2,
"permissions": [
"https://open.spotify.com/*",
"https://www.musixmatch.com/search/*"
],
"content_scripts": [
{
"matches": [
"https://open.spotify.com/*"
],
"js": ["js/spotifyListener.js"],
"run_at": "document_idle"
},
{
"matches": [
"https://www.musixmatch.com/search/*"
],
"js": ["js/musixmatchSearch.js"],
"run_at": "document_idle"
}
],
"background": {
"scripts": ["js/startup.js"]
},
"options_ui": {
"page": "html/options.html",
"chrome_style": true
},
"browser_action": {
"default_title": "Click to enable/disable Spotify Translate"
},
"icons": {
"48": "icon/st_green_48.png",
"144": "icon/st_green_144.png"
}
}