tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

tab-script.js (230B)


      1 browser.runtime.sendNativeMessage("browser1", "HELLO_FROM_PAGE_1");
      2 browser.runtime.sendNativeMessage("browser2", "HELLO_FROM_PAGE_2");
      3 
      4 const port = browser.runtime.connectNative("browser1");
      5 port.postMessage("HELLO_FROM_PORT");