2022-03-19 19:07:22 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-03-30 14:59:51 +00:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
2022-03-19 19:07:22 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-03-20 14:54:48 +00:00
|
|
|
<header>
|
|
|
|
<h1>FuriKani</h1>
|
2022-04-01 12:09:24 +00:00
|
|
|
<h2>v0.7</h2>
|
2022-03-20 14:54:48 +00:00
|
|
|
</header>
|
2022-03-19 19:07:22 +00:00
|
|
|
|
2022-03-20 14:54:48 +00:00
|
|
|
<div id="token-area">
|
|
|
|
<div id="input-area">
|
|
|
|
<span id="token-status"></span>
|
|
|
|
<input type="text" id="token" placeholder="Wanikani Token"/>
|
|
|
|
<button id="submit-token">OK</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<span id="error-text">
|
|
|
|
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="settings-area">
|
2022-03-20 16:13:22 +00:00
|
|
|
<div class="setting">
|
2022-03-20 15:25:50 +00:00
|
|
|
<label class="switch">
|
2022-03-20 16:13:22 +00:00
|
|
|
<input type="checkbox" id="setting-global">
|
2022-03-20 15:25:50 +00:00
|
|
|
<span class="slider round"></span>
|
|
|
|
</label>
|
2022-03-20 14:54:48 +00:00
|
|
|
|
2022-03-20 15:25:50 +00:00
|
|
|
<span class="description">Enable Furikani</span>
|
|
|
|
</div>
|
|
|
|
|
2022-03-20 16:13:22 +00:00
|
|
|
<div class="setting">
|
2022-03-20 15:25:50 +00:00
|
|
|
<label class="switch">
|
2022-03-20 16:13:22 +00:00
|
|
|
<input type="checkbox" id="setting-vocabulary">
|
2022-03-20 15:25:50 +00:00
|
|
|
<span class="slider round"></span>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<span class="description">Use Vocabulary List</span>
|
|
|
|
</div>
|
2022-03-20 00:04:00 +00:00
|
|
|
|
2022-03-20 16:13:22 +00:00
|
|
|
<div class="setting">
|
2022-03-20 15:25:50 +00:00
|
|
|
<label class="switch">
|
2022-03-20 16:13:22 +00:00
|
|
|
<input type="checkbox" id="setting-kanji">
|
2022-03-20 15:25:50 +00:00
|
|
|
<span class="slider round"></span>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<span class="description">Use Kanji List</span>
|
|
|
|
</div>
|
2022-03-20 14:54:48 +00:00
|
|
|
</div>
|
2022-03-20 00:04:00 +00:00
|
|
|
|
2022-03-20 14:54:48 +00:00
|
|
|
<footer>
|
2022-03-20 16:40:08 +00:00
|
|
|
<span id="level-text">Using WaniKani Level <span id="level"></span></span>
|
|
|
|
|
2025-03-09 19:01:03 +00:00
|
|
|
<span id="author" >Made by <a target="_blank" href="https://repos.einweckglas.com/lauchmelder">Lauchmelder</a></span>
|
|
|
|
<a id="source" target="_blank" href="https://repos.einweckglas.com/lauchmelder/FuriKani">Source Code</a>
|
2022-03-20 14:54:48 +00:00
|
|
|
</footer>
|
2022-03-19 19:07:22 +00:00
|
|
|
|
2022-03-30 14:59:51 +00:00
|
|
|
<script src="popup.js"></script>
|
2022-03-19 19:07:22 +00:00
|
|
|
</body>
|
2025-03-09 19:01:03 +00:00
|
|
|
</html>
|