tor-browser

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

file_install_extensions.html (271B)


      1 <!DOCTYPE html>
      2 
      3 <html>
      4 <head>
      5  <meta charset="utf-8">
      6 </head>
      7 <body>
      8 <script type="text/javascript">
      9 function installMozAM(url) {
     10  return navigator.mozAddonManager.createInstall({url})
     11                  .then(install => install.install());
     12 }
     13 </script>
     14 </body>
     15 </html>