forked from sissbruecker/linkding-extension
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
52 lines (45 loc) · 1.21 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
{
"manifest_version": 3,
"name": "Briefkasten Bookmarks",
"version": "0.5.2",
"description": "Companion extension for the Briefkasten bookmark app.",
"homepage_url": "https://github.com/ndom91/briefkasten-extension/",
"icons": {
"16": "src/icons/logo-16x16.png",
"48": "src/icons/logo-48x48.png",
"96": "src/icons/logo-96x96.png",
"128": "src/icons/logo-128x128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"omnibox": {
"keyword": "bk"
},
"action": {
"default_icon": {
"16": "src/icons/logo-16x16.png",
"19": "src/icons/logo-19x19.png",
"32": "src/icons/logo-32x32.png",
"38": "src/icons/logo-38x38.png"
},
"default_title": "Add bookmark (Alt+Shift+L)",
"default_popup": "src/popup/index.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"windows": "Ctrl+Shift+K",
"linux": "Ctrl+Shift+K"
},
"description": "Open a popup to bookmark current page."
}
},
"options_ui": {
"page": "src/options/index.html"
},
"permissions": ["storage", "background"],
"host_permissions": ["http://*/*", "https://*/*"]
}