-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (49 loc) · 1.25 KB
/
Copy pathmanifest.json
File metadata and controls
50 lines (49 loc) · 1.25 KB
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
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "1.0.1",
"description": "__MSG_extensionDescription__",
"default_locale": "zh_CN",
"icons": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"permissions": ["storage", "bookmarks", "activeTab", "scripting"],
"background": {
"service_worker": "src/background/index.ts",
"type": "module"
},
"action": {
"default_popup": "src/popup/index.html",
"default_title": "__MSG_extensionName__",
"default_icon": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
}
},
"options_page": "src/options/index.html",
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "Command+Shift+B"
}
},
"quick_search": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
},
"description": "__MSG_quickSearchBookmarks__"
},
"quick_bookmark": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "Command+Shift+D"
},
"description": "__MSG_quickBookmarkPage__"
}
}
}