aboutsummaryrefslogtreecommitdiffstats
path: root/extension
diff options
context:
space:
mode:
authorOmar Rizwan <omar.rizwan@gmail.com>2020-10-23 22:03:13 -0700
committerOmar Rizwan <omar.rizwan@gmail.com>2020-10-23 22:03:13 -0700
commit281e0a3d8cbc4ef5e2f2a32d6e347888d36c5209 (patch)
tree588f4666569c41099b97586d9671f768011b050d /extension
parenteee57547acb4b9a73dffa3c7cceddd6d5d15e5d7 (diff)
Works in Chrome again! (had to make TabFS name lowercase)
Add install script to cover all the native messaging install cases.
Diffstat (limited to 'extension')
-rw-r--r--extension/background.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/background.js b/extension/background.js
index 1e47b98..75520d9 100644
--- a/extension/background.js
+++ b/extension/background.js
@@ -365,7 +365,7 @@ async function onMessage(req) {
};
function tryConnect() {
- port = chrome.runtime.connectNative('com.rsnous.TabFS');
+ port = chrome.runtime.connectNative('com.rsnous.tabfs');
/* console.log('hello', port);*/
/* updateToolbarIcon();*/
port.onMessage.addListener(onMessage);