forked from mengqhui/baidudl
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmanifest.json
45 lines (39 loc) · 1.04 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
{
"manifest_version": 2,
"name": "BaiduPan Explorer",
"short_name": "BaiduPan Explorer",
"description": "获取百度网盘高速下载链接. Extract high speed download links from pan.baidu.com. \n Forked from Github: https://github.com/Kyle-Kyle/baidudl",
"version": "1.1.5",
"web_accessible_resources": [
"content_script/injection_listener.js",
"content_script/injection.js",
"content_script/utilities.js",
"resource/jquery.cookie.js"
],
"icons": {
"16": "icon/icon16.png",
"32": "icon/icon32.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png"
},
"browser_action": {
"default_popup": "popup/popup.html",
"default_title" : "Click here!"
},
"content_scripts": [{
"matches": ["https://pan.baidu.com/*", "http://pan.baidu.com/*"],
"js": ["resource/jquery.min.js"],
"run_at": "document_start"
}],
"permissions": [
"activeTab",
"storage",
"http://127.0.0.1:8333/",
"https://pan.baidu.com/",
"cookies",
"https://d.pcs.baidu.com/",
"http://d.pcs.baidu.com/",
"webRequest",
"webRequestBlocking"
]
}