-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
75 lines (75 loc) · 1.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nTools 效率工具箱",
"author": "SanJin",
"description": "这是一款浏览器上的多功能效率工具",
"homepage_url": "https://n.tools",
"version": "0.1",
"manifest_version": 3,
"offline_enabled": true,
"action": {
"icons": {
"16": "/images/icons/16.png",
"32": "/images/icons/32.png",
"48": "/images/icons/48.png",
"128": "/images/icons/128.png"
}
},
"icons": {
"16": "/images/icons/16.png",
"32": "/images/icons/32.png",
"48": "/images/icons/48.png",
"128": "/images/icons/128.png"
},
"background": {
"service_worker": "/js/background.js",
"type": "module"
},
"permissions": [
"tabs",
"bookmarks",
"browsingData",
"history",
"search",
"commands",
"topSites"
],
"options_page": "options.html",
"commands": {
"open_main": {
"suggested_key": {
"default": "Alt+Z",
"mac": "Alt+Z"
},
"description": "Show nTools Window."
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"js": [
"/js/utils/fuse.min.js",
"/js/utils/jquery.min.js",
"/js/hello.js"
],
"css": [
"/css/style.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"hello.html",
"/js/*",
"/css/*",
"/images/*"
],
"matches": [
"<all_urls>"
]
}
]
}