tor-browser

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

profiles.html (1133B)


      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 file,
      3   - You can obtain one at http://mozilla.org/MPL/2.0/. -->
      4 <!doctype html>
      5 <html
      6  xmlns="http://www.w3.org/1999/xhtml"
      7  role="document"
      8  class="system-font-size"
      9  width="800"
     10  height="800"
     11  windowtype="about:profilemanager"
     12 >
     13  <head>
     14    <meta charset="utf-8" />
     15    <meta
     16      http-equiv="Content-Security-Policy"
     17      content="default-src resource: chrome:; object-src 'none'; img-src blob: chrome:;"
     18    />
     19 
     20    <link rel="localization" href="branding/brand.ftl" />
     21    <link rel="localization" href="browser/profiles.ftl" />
     22 
     23    <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
     24    <link
     25      rel="stylesheet"
     26      href="chrome://browser/content/profiles/profile-selector.css"
     27    />
     28 
     29    <script
     30      type="module"
     31      src="chrome://browser/content/profiles/profile-selector.mjs"
     32    ></script>
     33 
     34    <title data-l10n-id="profile-window-title-2"></title>
     35  </head>
     36  <body>
     37    <profile-selector></profile-selector>
     38  </body>
     39 </html>