tor-browser

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

sidebar-customize.html (1055B)


      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 
      5 <!doctype html>
      6 <html>
      7  <head>
      8    <meta charset="utf-8" />
      9    <meta
     10      http-equiv="Content-Security-Policy"
     11      content="default-src resource: chrome:; object-src 'none'; img-src data: chrome:;"
     12    />
     13    <meta name="color-scheme" content="light dark" />
     14    <title data-l10n-id="sidebar-customize-title"></title>
     15    <link rel="localization" href="branding/brand.ftl" />
     16    <link rel="localization" href="browser/sidebar.ftl" />
     17    <link rel="localization" href="preview/genai.ftl" />
     18    <link
     19      rel="stylesheet"
     20      href="chrome://browser/content/sidebar/sidebar.css"
     21    />
     22    <script
     23      type="module"
     24      src="chrome://browser/content/sidebar/sidebar-customize.mjs"
     25    ></script>
     26    <script src="chrome://browser/content/contentTheme.js"></script>
     27  </head>
     28 
     29  <body>
     30    <sidebar-customize />
     31  </body>
     32 </html>