aboutsummaryrefslogtreecommitdiffstats
path: root/apps/browser-extension/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'apps/browser-extension/manifest.json')
-rw-r--r--apps/browser-extension/manifest.json18
1 files changed, 16 insertions, 2 deletions
diff --git a/apps/browser-extension/manifest.json b/apps/browser-extension/manifest.json
index fc07f67c..dadd5a78 100644
--- a/apps/browser-extension/manifest.json
+++ b/apps/browser-extension/manifest.json
@@ -30,7 +30,9 @@
},
"background": {
"service_worker": "src/background/background.ts",
- "scripts": ["src/background/background.ts"]
+ "scripts": [
+ "src/background/background.ts"
+ ]
},
"options_ui": {
"page": "index.html#options",
@@ -44,5 +46,17 @@
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
- "permissions": ["storage", "tabs", "contextMenus"]
+ "permissions": [
+ "storage",
+ "tabs",
+ "contextMenus"
+ ],
+ "commands": {
+ "add-link": {
+ "suggested_key": {
+ "default": "Ctrl+Shift+E"
+ },
+ "description": "Send the current page URL to Karakeep."
+ }
+ }
}