tor-browser

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

pageAssist.html (1210B)


      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 xmlns="http://www.w3.org/1999/xhtml" role="document">
      6  <head>
      7    <meta charset="utf-8" />
      8    <meta
      9      http-equiv="Content-Security-Policy"
     10      content="default-src resource: chrome:; object-src 'none'; img-src chrome:;"
     11    />
     12    <meta name="color-scheme" content="light dark" />
     13    <title data-l10n-id="genai-page-assist-title"></title>
     14    <link rel="localization" href="browser/genai.ftl" />
     15    <link rel="localization" href="browser/sidebar.ftl" />
     16    <link rel="localization" href="preview/genai.ftl" />
     17    <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
     18    <link
     19      rel="stylesheet"
     20      href="chrome://browser/content/sidebar/sidebar.css"
     21    />
     22    <script src="chrome://browser/content/contentTheme.js"></script>
     23    <script
     24      type="module"
     25      src="chrome://browser/content/genai/content/page-assist.mjs"
     26    ></script>
     27  </head>
     28  <body id="page-assist-wrapper">
     29    <page-assist></page-assist>
     30  </body>
     31 </html>