-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
52 lines (52 loc) · 1.08 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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "1.2.0",
"description": "__MSG_extDesc__",
"icons":
{
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions":
[
"contextMenus",
"downloads",
"tabs",
"notifications"
],
"host_permissions":
[
"https://music.163.com/*"
],
"action":
{
"default_icon": {
"16": "img/icon16.png",
"32": "img/icon48.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"default_title": "网易云音乐封面助手",
"default_popup": "popup.html"
},
"background": {
"service_worker": "js/background.js"
},
"content_scripts":
[
{
"matches": ["http://music.163.com/*","https://music.163.com/*"],
"js": ["js/jquery-1.8.3.js","js/content_scripts.js"],
"css": ["css/content_scripts.css"],
"run_at": "document_end"
}
],
"homepage_url": "https://vayci.github.io/netease_cover_chrome_plugin/",
"omnibox": { "keyword" : "wyy" },
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"default_locale": "zh_CN"
}