tor-browser

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

download.js (336B)


      1 browser.downloads.download({
      2  url: "http://localhost:4245/assets/www/images/test.gif",
      3  filename: "banana.gif",
      4  method: "POST",
      5  body: "postbody",
      6  headers: [
      7    {
      8      name: "User-Agent",
      9      value: "Mozilla Firefox",
     10    },
     11  ],
     12  allowHttpErrors: true,
     13  conflictAction: "overwrite",
     14  saveAs: true,
     15  incognito: true,
     16 });