tor-browser

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

background-script.js (165B)


      1 browser.runtime.onMessage.addListener(notify);
      2 
      3 function notify(message) {
      4  if (message.action == "showTab") {
      5    browser.tabs.update({ url: "/tab.html" });
      6  }
      7 }