-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest.json
80 lines (79 loc) · 1.88 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
{
"manifest_version": 2 ,
"name": "1Player for 网易云音乐",
"description": "使用1Player控制你的网易云音乐播放器,通过快捷键可以在做其他工作时方便地控制歌曲免除来回切换的烦恼。",
"version": "2.1.0",
"options_page": "options.html",
"content_scripts":[
{
"matches": ["https://music.163.com/*"],
"js": ["js/util.js", "js/content.js"]
}
],
"background": {
"scripts": ["js/util.js","js/background.js"],
"persistent": true
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html",
"default_title": "1Player"
},
"permissions": [
"tabs",
"activeTab",
"clipboardWrite",
"notifications",
"storage",
"*://m1.music.126.net///*",
"*://m2.music.126.net///*",
"*://p1.music.126.net///*",
"*://p2.music.126.net///*",
"*://p3.music.126.net///*",
"*://p4.music.126.net///*",
"*://p5.music.126.net///*",
"*://p6.music.126.net///*",
"*://p7.music.126.net///*",
"*://p8.music.126.net///*",
"*://p9.music.126.net///*"
],
"web_accessible_resources": [
"icon48.png",
"js/improve.js"
],
"commands": {
"add-like": {
"suggested_key": {
"default": "Ctrl+Shift+7"
},
"description": "收藏当前曲目到我喜欢的",
"global": true
},
"play-prev": {
"suggested_key": {
"default": "Ctrl+Shift+8"
},
"description": "上一曲",
"global": true
},
"play-next": {
"suggested_key": {
"default": "Ctrl+Shift+9"
},
"description": "下一曲",
"global": true
},
"play-or-pause": {
"suggested_key": {
"default": "Ctrl+Shift+0"
},
"description": "播放或暂停",
"global": true
}
}
}