b4fe1f1fa6
Gecko currently does not support chrome.storage.sync and chrome.runtime.onInstalled. Use chrome.storage.local instead of sync and ignore calls to onInstalled. The implication of not having runtime.onInstalled is that the options page is not shown on first-run.
14 lines
423 B
HTML
14 lines
423 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<body>
|
|
<script src="js/polyfill-gecko.js"></script>
|
|
<script src="../lib/handlebars.min.js"></script>
|
|
<script src="js/templates.js"></script>
|
|
<script src="js/dictionary.js"></script>
|
|
<script src="js/deinflector.js"></script>
|
|
<script src="js/translator.js"></script>
|
|
<script src="js/options.js"></script>
|
|
<script src="js/yomichan.js"></script>
|
|
</body>
|
|
</html>
|