-
Notifications
You must be signed in to change notification settings - Fork 8
/
options.html
37 lines (34 loc) · 1.27 KB
/
options.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Nazeka: options</title>
<script type="text/javascript" src="options.js"></script>
<style>
body
{
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div class=panel>
<!-- target=_blank prevents firefox mobile from opening the link inside the about:addons page and hitting a CSP error -->
<p>View the tutorial <a href="https://github.com/wareya/nazeka/blob/master/tutorial.md" target="_blank">here!</a></p>
<p>Do you want an option that isn't here? Post a request on the <a href="https://github.com/wareya/nazeka/issues" target="_blank">issue tracker</a>.</p>
<form name=optform>
<div id=optionsection>
</div>
</form>
<div class=dictstuff>
<h2>About</h2>
<p>This extension uses JMdict, which is Copyright © 2018 The Electronic Dictionary Research and Development Group and licensed under the <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a> license.</p>
<p>This extension is otherwise licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, version 2.0</a>.</p>
<p><button id="abbrlink">View JMDict abbreviation definitions</button></p>
</div>
</div>
</body>
</html>