forked from misswell/octoman-weibo-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (56 loc) · 1.13 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
{
"manifest_version": 2,
"name": "Octoman微博备份",
"version": "0.1.8",
"description":"一键备份微博",
"background": {
"scripts": [
"jquery/jquery-3.4.1.js",
"utils/config.js",
"utils/common.js",
"utils/util.js",
"utils/date.js",
"background.js"
]
},
"icons":{
"16": "img/logo.png",
"48": "img/logo.png",
"128": "img/logo.png"
},
"browser_action": {
"default_icon": {
"19": "img/logo.png",
"38": "img/logo.png"
},
"default_title": "Octoman微博备份",
"default_popup": "popup.html"
},
"permissions": [
"*://*.weibo.cn/*",
"*://*.weibo.com/*",
"*://*.imgram.cn/*",
"webRequest",
"webRequestBlocking"
],
"options_page": "/options/options.html",
"optional_permissions": [],
"content_scripts": [
{
"matches": [
"*://*.weibo.com/*"
],
"js": [
"jquery/jquery-3.4.1.js",
"utils/config.js",
"utils/date.js",
"utils/util.js",
"utils/common.js",
"content/listener.js"
],
"css": [
],
"run_at": "document_end"
}
]
}