tor-browser

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

index.html (976B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 <!doctype html>
      6 <html dir="">
      7  <head>
      8    <meta charset="utf-8" />
      9    <meta
     10      http-equiv="Content-Security-Policy"
     11      content="default-src chrome: resource:;"
     12    />
     13 
     14    <link
     15      href="chrome://devtools/content/dom/content/dom-view.css"
     16      rel="stylesheet"
     17    />
     18    <link
     19      href="chrome://devtools-jsonview-styles/content/toolbar.css"
     20      rel="stylesheet"
     21    />
     22    <link
     23      href="chrome://devtools/content/shared/components/tree/TreeView.css"
     24      rel="stylesheet"
     25    />
     26 
     27    <script src="chrome://devtools/content/shared/theme-switching.js"></script>
     28  </head>
     29  <body class="theme-body" role="application">
     30    <div id="content"></div>
     31    <script src="./main.js"></script>
     32  </body>
     33 </html>