tor-browser

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

index.html (1144B)


      1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      2   - License, v. 2.0. If a copy of the MPL was not distributed with this
      3   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      4 <!doctype html>
      5 <html>
      6  <head>
      7    <meta
      8      http-equiv="Content-Security-Policy"
      9      content="default-src 'none'; style-src chrome: resource:; img-src chrome: resource:; script-src chrome: resource:; object-src 'none'"
     10    />
     11    <meta name="color-scheme" content="light dark" />
     12    <link
     13      rel="icon"
     14      type="image/svg+xml"
     15      href="chrome://devtools/skin/images/tool-profiler.svg"
     16    />
     17    <link
     18      rel="stylesheet"
     19      href="chrome://global/skin/global.css"
     20      type="text/css"
     21    />
     22    <link
     23      rel="stylesheet"
     24      href="chrome://global/skin/in-content/common.css"
     25      type="text/css"
     26    />
     27    <link
     28      rel="stylesheet"
     29      href="chrome://devtools/skin/aboutprofiling.css"
     30      type="text/css"
     31    />
     32  </head>
     33  <body class="theme-body">
     34    <div id="root"></div>
     35    <script src="chrome://devtools/content/performance-new/aboutprofiling/initializer.js"></script>
     36  </body>
     37 </html>