tor-browser

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

messaging.js (251B)


      1 browser.runtime.sendNativeMessage("badNativeApi", "errorerrorerror");
      2 
      3 async function runTest() {
      4  await browser.runtime.sendNativeMessage(
      5    "browser",
      6    "testContentBrowserMessage"
      7  );
      8  browser.runtime.connectNative("browser");
      9 }
     10 
     11 runTest();