aboutsummaryrefslogtreecommitdiff
path: root/ext/background.html
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-02-12 23:03:15 -0500
committerGitHub <noreply@github.com>2021-02-12 23:03:15 -0500
commit4053d9b2fac82108f701788c511aedaf988de4c5 (patch)
tree0076ba6c17234651788b1e8421b5d71a9e33cb8d /ext/background.html
parent4f13de283572b2c57e7462f1030c12fe8335882e (diff)
Move html files (#1375)
* Move background.html to / * Move context.html to / * Move info.html to / * Move legal.html to / * Move permissions.html to / * Move pitch-accents-preview.html to / * Move popup-preview.html to / * Move search.html to / * Move settings.html to / * Move settings2.html to / * Move template-renderer.html to / * Move welcome.html to / * Move float.html to / * Move display-templates.html to /
Diffstat (limited to 'ext/background.html')
-rw-r--r--ext/background.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/ext/background.html b/ext/background.html
new file mode 100644
index 00000000..101bd09c
--- /dev/null
+++ b/ext/background.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width,initial-scale=1">
+ <title>Background</title>
+ <link rel="icon" type="image/png" href="/images/icon16.png" sizes="16x16">
+ <link rel="icon" type="image/png" href="/images/icon19.png" sizes="19x19">
+ <link rel="icon" type="image/png" href="/images/icon32.png" sizes="32x32">
+ <link rel="icon" type="image/png" href="/images/icon38.png" sizes="38x38">
+ <link rel="icon" type="image/png" href="/images/icon48.png" sizes="48x48">
+ <link rel="icon" type="image/png" href="/images/icon64.png" sizes="64x64">
+ <link rel="icon" type="image/png" href="/images/icon128.png" sizes="128x128">
+ </head>
+ <body>
+ <textarea id="clipboard-paste-target"></textarea>
+
+ <script src="/mixed/lib/wanakana.min.js"></script>
+
+ <script src="/mixed/js/core.js"></script>
+ <script src="/mixed/js/yomichan.js"></script>
+ <script src="/mixed/js/environment.js"></script>
+ <script src="/mixed/js/japanese.js"></script>
+
+ <script src="/mixed/js/cache-map.js"></script>
+ <script src="/mixed/js/dictionary-data-util.js"></script>
+ <script src="/mixed/js/object-property-accessor.js"></script>
+
+ <script src="/bg/js/anki.js"></script>
+ <script src="/bg/js/audio-downloader.js"></script>
+ <script src="/bg/js/clipboard-monitor.js"></script>
+ <script src="/bg/js/clipboard-reader.js"></script>
+ <script src="/bg/js/database.js"></script>
+ <script src="/bg/js/deinflector.js"></script>
+ <script src="/bg/js/dictionary-database.js"></script>
+ <script src="/bg/js/json-schema.js"></script>
+ <script src="/bg/js/mecab.js"></script>
+ <script src="/bg/js/media-utility.js"></script>
+ <script src="/bg/js/options.js"></script>
+ <script src="/bg/js/permissions-util.js"></script>
+ <script src="/bg/js/profile-conditions.js"></script>
+ <script src="/bg/js/request-builder.js"></script>
+ <script src="/bg/js/native-simple-dom-parser.js"></script>
+ <script src="/bg/js/template-patcher.js"></script>
+ <script src="/bg/js/text-source-map.js"></script>
+ <script src="/bg/js/translator.js"></script>
+
+ <script src="/bg/js/backend.js"></script>
+
+ <script src="/bg/js/background-main.js"></script>
+
+ <!--
+ Due to a Firefox bug, this next element is purposefully terminated incorrectly.
+ This element must appear directly inside the <body> element, and it must not be closed properly.
+ https://bugzilla.mozilla.org/show_bug.cgi?id=1603985
+ -->
+ <!-- [html-validate-disable close-order] -->
+ <div id="clipboard-image-paste-target" contenteditable="true">
+ </body>
+</html>