aboutsummaryrefslogtreecommitdiffstats
path: root/apps/browser-extension/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--apps/browser-extension/manifest.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/browser-extension/manifest.json b/apps/browser-extension/manifest.json
index 19379068..a31885fa 100644
--- a/apps/browser-extension/manifest.json
+++ b/apps/browser-extension/manifest.json
@@ -11,6 +11,9 @@
"action": {
"default_popup": "index.html"
},
+ "background": {
+ "service_worker": "src/background/background.ts"
+ },
"options_ui": {
"page": "index.html#options",
"open_in_tab": false
@@ -23,5 +26,5 @@
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
- "permissions": ["storage", "tabs"]
+ "permissions": ["storage", "tabs", "contextMenus"]
}