2020-12-18 20:54:05 +00:00
|
|
|
/*
|
2022-02-03 01:43:10 +00:00
|
|
|
* Copyright (C) 2020-2022 Yomichan Authors
|
2020-12-18 20:54:05 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
self.importScripts(
|
2021-02-14 02:28:47 +00:00
|
|
|
'/lib/parse5.js',
|
|
|
|
'/lib/wanakana.min.js',
|
2021-02-14 03:52:28 +00:00
|
|
|
'/js/core.js',
|
|
|
|
'/js/yomichan.js',
|
2021-11-24 03:23:14 +00:00
|
|
|
'/js/accessibility/accessibility-controller.js',
|
2021-02-15 01:25:41 +00:00
|
|
|
'/js/background/backend.js',
|
|
|
|
'/js/background/profile-conditions-util.js',
|
|
|
|
'/js/background/request-builder.js',
|
2021-11-23 00:29:20 +00:00
|
|
|
'/js/background/script-manager.js',
|
2022-05-30 01:42:26 +00:00
|
|
|
'/js/comm/anki-connect.js',
|
2021-02-14 16:19:54 +00:00
|
|
|
'/js/comm/clipboard-monitor.js',
|
|
|
|
'/js/comm/clipboard-reader.js',
|
2021-02-15 01:25:41 +00:00
|
|
|
'/js/comm/mecab.js',
|
2021-02-25 02:54:58 +00:00
|
|
|
'/js/data/anki-util.js',
|
2021-02-14 16:19:54 +00:00
|
|
|
'/js/data/database.js',
|
|
|
|
'/js/data/json-schema.js',
|
|
|
|
'/js/data/options-util.js',
|
|
|
|
'/js/data/permissions-util.js',
|
2021-07-31 17:04:16 +00:00
|
|
|
'/js/data/sandbox/string-util.js',
|
2021-02-14 16:19:54 +00:00
|
|
|
'/js/dom/simple-dom-parser.js',
|
2022-05-29 01:57:25 +00:00
|
|
|
'/js/extension/environment.js',
|
2021-02-15 01:25:41 +00:00
|
|
|
'/js/general/cache-map.js',
|
|
|
|
'/js/general/object-property-accessor.js',
|
2021-03-09 02:01:55 +00:00
|
|
|
'/js/general/regex-util.js',
|
2021-02-14 16:19:54 +00:00
|
|
|
'/js/general/text-source-map.js',
|
2021-02-15 01:25:41 +00:00
|
|
|
'/js/language/deinflector.js',
|
|
|
|
'/js/language/dictionary-database.js',
|
2021-07-17 21:10:25 +00:00
|
|
|
'/js/language/sandbox/dictionary-data-util.js',
|
|
|
|
'/js/language/sandbox/japanese-util.js',
|
2021-02-14 16:19:54 +00:00
|
|
|
'/js/language/translator.js',
|
2021-02-15 01:25:41 +00:00
|
|
|
'/js/media/audio-downloader.js',
|
|
|
|
'/js/media/media-util.js',
|
|
|
|
'/js/templates/template-patcher.js',
|
2021-02-14 16:19:54 +00:00
|
|
|
'/js/background/background-main.js'
|
2020-12-18 20:54:05 +00:00
|
|
|
);
|