asrouter-admin.html (1379B)
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 5 <!doctype html> 6 <html> 7 <head> 8 <meta charset="utf-8" /> 9 <meta 10 http-equiv="Content-Security-Policy" 11 content="default-src 'none'; object-src 'none'; script-src resource: chrome:;" 12 /> 13 <meta name="color-scheme" content="light dark" /> 14 <title>ASRouter Admin</title> 15 <link 16 rel="icon" 17 type="image/png" 18 href="chrome://branding/content/icon32.png" 19 /> 20 <link rel="localization" href="branding/brand.ftl" /> 21 <link rel="localization" href="toolkit/branding/brandings.ftl" /> 22 <link 23 rel="stylesheet" 24 href="chrome://browser/content/asrouter/components/ASRouterAdmin/ASRouterAdmin.css" 25 /> 26 </head> 27 <body> 28 <div id="root"></div> 29 <script src="chrome://global/content/vendor/react.js"></script> 30 <script src="chrome://global/content/vendor/react-dom.js"></script> 31 <script src="chrome://global/content/vendor/prop-types.js"></script> 32 <script src="chrome://browser/content/asrouter/asrouter-admin.bundle.js"></script> 33 34 <!-- The render.js script is the main entrypoint for the page. --> 35 <script src="chrome://browser/content/asrouter/render.js"></script> 36 </body> 37 </html>