I want my chrome addon to connect to redis server. One of the option explored is chrome native messaging since addon/browser cannot directly connect to redis. Browser/addon can only communicate through http/websocket.
chrome native messaging seemed to be deprecated and I couldn't find chrome.runtime.connectNative or chrome.runtime.sendNativeMessage mentioned in the current version of browser. I am currently running a web server which can accept http calls from addon and communicate through redis but looking for a faster way.
What can be fastest way for addon to connect to redis?
from Alternative to chrome native messaging
No comments:
Post a Comment