blob: 50b246f5872cef1d63d44ab3d412f9295cde32cd (
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
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="options.css" rel="stylesheet">
</head>
<body>
<div class="section-header"><span class="section-header-span" data-i18n="options_generalSettings"></span></div>
<div id='counter-wrapper'>
<input type="checkbox" id="showCounter">
<label for="showCounter" data-i18n="menu_showCounter"></label>
</div>
<div id="import-confirmed" data-i18n="options_imported"></div>
<form>
<div class="section-header"><span class="section-header-span" data-i18n="options_importSettings"></span></div>
<section id="ImportSettings" class="options">
<input id="import-settings" type="file" accept="application/json">
</section>
<button type="submit" id="import" data-i18n="options_import" disabled></button>
</form>
<script src="options.js"></script>
<script src="translation.js"></script>
<script src="send-message.js"></script>
</body>
</html>
|