forked from Alexis-Bize/Deezify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 851 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
34
{
"name": "Deezify",
"version": "1.0",
"manifest_version": 2,
"description": "__MSG_deezifyDescription__",
"icons": {
"16": "media/images/icon_16.png",
"48": "media/images/icon_48.png",
"64": "media/images/icon_64.png",
"128": "media/images/icon_128.png",
"256": "media/images/icon_256.png"
},
"default_locale": "en",
"permissions": [
"activeTab",
"*://*.vk.com/*"
],
"content_scripts": [
{
"matches": [
"*://music.xbox.com/*",
"*://www.deezer.com/*",
"*://play.spotify.com/*"
],
"css": [
"media/css/deezify.css"
],
"js": [
"src/include.js"
],
"all_frames" : false
}
]
}