summaryrefslogtreecommitdiff
path: root/ext/sw.js
blob: 2cc9a6c381c20f61edfdf0bb08795b969b0800f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Copyright (C) 2020-2021  Yomichan Authors
 *
 * 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(
    '/lib/parse5.js',
    '/lib/wanakana.min.js',
    '/js/core.js',
    '/js/yomichan.js',
    '/js/background/environment.js',
    '/js/language/japanese-util.js',
    '/js/general/cache-map.js',
    '/js/language/dictionary-data-util.js',
    '/js/general/object-property-accessor.js',
    '/bg/js/anki.js',
    '/bg/js/audio-downloader.js',
    '/bg/js/clipboard-monitor.js',
    '/bg/js/clipboard-reader.js',
    '/bg/js/database.js',
    '/bg/js/deinflector.js',
    '/bg/js/dictionary-database.js',
    '/bg/js/json-schema.js',
    '/bg/js/mecab.js',
    '/bg/js/media-utility.js',
    '/bg/js/options.js',
    '/bg/js/permissions-util.js',
    '/bg/js/profile-conditions.js',
    '/bg/js/request-builder.js',
    '/bg/js/simple-dom-parser.js',
    '/bg/js/template-patcher.js',
    '/bg/js/text-source-map.js',
    '/bg/js/translator.js',
    '/bg/js/backend.js',
    '/bg/js/background-main.js'
);