diff options
| author | Steven Conaway <steven.conaway@icloud.com> | 2025-06-07 14:19:54 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-07 20:19:54 +0100 |
| commit | ee517456ffb79b72fd68f08e4e7e9d1e39d0d1f4 (patch) | |
| tree | ea4ef2e5db676eb0ae8f18d310851d0488c9b68f /apps/browser-extension/manifest.json | |
| parent | 3a0f5fa0bbc907e81a0ddf2f8728a36761499928 (diff) | |
| download | karakeep-ee517456ffb79b72fd68f08e4e7e9d1e39d0d1f4.tar.zst | |
feat(extension): add a keyboard shortcut to save page (#1532)
Diffstat (limited to 'apps/browser-extension/manifest.json')
| -rw-r--r-- | apps/browser-extension/manifest.json | 18 |
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." + } + } } |
