tor-browser

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

view-source-image.html (286B)


      1 <script>
      2  var url = document.location.href;
      3  var imageUrl = url.replace(/[/][^/]*$/, "/blue-circle-16x16.png");
      4  var viewSourceImageUrl = "view-source:" + imageUrl;
      5  var html = "<iframe src='#url#'></iframe>".replace(/#url#/, viewSourceImageUrl);
      6  document.write(html);
      7 </script>