aboutsummaryrefslogtreecommitdiffstats
path: root/extension/manifest.json
diff options
context:
space:
mode:
authorOmar Rizwan <omar.rizwan@gmail.com>2020-10-16 21:56:49 -0700
committerOmar Rizwan <omar.rizwan@gmail.com>2020-10-16 21:56:49 -0700
commit74b1b0f789ea4e310a138c4b6d476a78d49cf557 (patch)
tree268d1a06984d0430d987ac0f350e3e2d6e3f7629 /extension/manifest.json
parent53de6736feb5ab5d5a3039190ea770bfddc67ccf (diff)
Starting to move to native messaging.
Why? The WebSocket stuff is broken right now, and I want to get rid of the dep...
Diffstat (limited to 'extension/manifest.json')
-rw-r--r--extension/manifest.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/extension/manifest.json b/extension/manifest.json
index ac424f1..7900406 100644
--- a/extension/manifest.json
+++ b/extension/manifest.json
@@ -5,12 +5,18 @@
"description": "Connects to TabFS filesystem",
"version": "1.0",
- "permissions": ["tabs", "debugger"],
+ "permissions": ["tabs", "debugger", "nativeMessaging"],
"browser_action": {},
"background": {
"scripts": ["background.js"],
"persistent": true
+ },
+
+ "browser_specific_settings": {
+ "gecko": {
+ "id": "tabfs@rsnous.com"
+ }
}
}