forked from FEYeh/ximalayadownloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 863 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"manifest_version": 2,
"name": "Ximalaya Downloader",
"description": "一键下载喜马拉雅免费音频,支持单个音频和专辑全部音频下载",
"version": "1.0",
"browser_action": {
"default_icon": "favicon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "favicon.png",
"32": "favicon.png",
"48": "favicon.png",
"16": "favicon.png"
},
"permissions": [
"downloads",
"cookies",
"tabs",
"notifications",
"clipboardWrite",
"clipboardRead",
"*://*.ximalaya.com/*"
],
"optional_permissions": [
"unlimitedStorage"
],
"host_permissions": [
"*://*.ximalaya.com/*"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/",
"<all_urls>"
],
"js": [
"js/jquery-3.5.1.js",
"js/bootstrap.js",
"js/popup.js"
]
}
],
"web_accessible_resources": [
"*/*.*"
]
}