aiWindow.html (1043B)
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 https://mozilla.org/MPL/2.0/. --> 4 5 <!doctype html> 6 <html class="ai-window"> 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 chrome:;" 12 /> 13 <meta name="color-scheme" content="light dark" /> 14 <!-- TODO : Add localization preview --> 15 <title>AI Window</title> 16 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" /> 17 <link 18 rel="stylesheet" 19 href="chrome://browser/content/sidebar/sidebar.css" 20 /> 21 <script 22 type="module" 23 src="chrome://browser/content/aiwindow/components/ai-window.mjs" 24 ></script> 25 <script 26 type="module" 27 src="chrome://browser/content/aiwindow/components/input-cta.mjs" 28 ></script> 29 </head> 30 <body> 31 <ai-window></ai-window> 32 </body> 33 </html>