-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.13 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
{
"name": "Geniusly",
"description": "Adds functionally to Genius (for details see options page)",
"version": "1.0.0",
"manifest_version": 2,
"permissions": ["activeTab", "tabs", "*://*.genius.com/artists/*"],
"options_page": "options.html",
"content_scripts": [
{
"matches": ["*://*.genius.com/artists/*"],
"js": ["assets/js/util.js", "assets/js/database.js", "artist.js"]
},
{
"matches": ["*://*.genius.com/albums/*/*"],
"js": ["album.js"]
},
{
"matches": ["*://*.genius.com/*-lyrics"],
"js": ["song.js", "assets/js/musical.js"]
},
{
"matches": ["*://*.genius.com/*"],
"exclude_matches": ["*://*.genius.com/artists/*", "*://*.genius.com/albums/*/*", "*://*.genius.com/*-lyrics", "*://*.genius.com/tags/*", "*://*.genius.com/new*"],
"js": ["profile.js"]
},
{
"matches": ["*://*.genius.com/tags/*"],
"js": ["tags.js"]
},
{
"matches": ["*://*.genius.com/new*"],
"js": ["new.js"]
},
{
"matches": ["*://*.genius.com/*"],
"js": ["main.js"]
}
],
"icons": {
"16": "assets/img/icon.png",
"48": "assets/img/icon.png",
"128": "assets/img/icon.png"
},
"default_locale": "en"
}