-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
58 lines (58 loc) · 1.15 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
{
"name": "empost",
"version": "0.0.4",
"manifest_version": 3,
"description": "发布emlog文章、笔记",
"action": {
"default_title": "emlog文章、笔记发布",
"default_icon": "icon.png",
"default_popup": "/pop/popup.html"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"options_page": "/pop/options.html",
"background": {
"service_worker": "/background/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [],
"js": [
"/deps/turndownplugs.js",
"/deps/turndown.browser.umd.js",
"/contentscript/content-script.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"/deps/jquery.min.js",
"/deps/layer/theme/default/*.*",
"/deps/layer/layer.js",
"/background/backExeScript.js"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"contextMenus",
"scripting",
"activeTab",
"tabs"
],
"host_permissions": [
"<all_urls>"
]
}