This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
manifest.json
64 lines (64 loc) · 1.54 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
{
"name": "网易云音乐",
"author": "sigoden@gmail.com",
"manifest_version": 2,
"homepage_url" : "https://github.com/sigoden/netease-music-crx" ,
"background": {
"persistent": true,
"page": "background.html"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon-34.png"
},
"icons": {
"128": "icon-128.png",
"48" : "icon-128.png",
"16" : "icon-128.png"
},
"permissions": [
"input",
"storage",
"webRequest",
"webRequestBlocking",
"contextMenus",
"https://music.163.com/",
"*://*.kuwo.cn/",
"*://*.migu.cn/"
],
"update_url": "http://clients2.google.com/service/update2/crx",
"minimum_chrome_version": "29",
"content_security_policy": "script-src 'self'; object-src 'self'",
"commands": {
"playNext": {
"suggested_key": {
"default": "MediaNextTrack",
"windows": "MediaNextTrack",
"mac": "MediaNextTrack",
"linux": "MediaNextTrack"
},
"description": "Play Next",
"global": true
},
"playPrev": {
"suggested_key": {
"default": "MediaPrevTrack",
"windows": "MediaPrevTrack",
"mac": "MediaPrevTrack",
"linux": "MediaPrevTrack"
},
"description": "Play Previous",
"global": true
},
"togglePlaying": {
"suggested_key": {
"default": "MediaPlayPause",
"windows": "MediaPlayPause",
"mac": "MediaPlayPause",
"linux": "MediaPlayPause"
},
"description": "Play Pause",
"global": true
}
}
}