Feature/#32 option menu #112

Merged
Serraniel merged 31 commits from feature/#32-option-menu into develop 2020-11-09 17:28:43 +01:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 10e584bfa9 - Show all commits

View file

@ -47,6 +47,8 @@
<button id="btnReset">Reset</button> <button id="btnReset">Reset</button>
<br /> <br />
<i>Please reload aniwatch website after you changed the settings.</i> <i>Please reload aniwatch website after you changed the settings.</i>
<hr />
<i id="version"></i> <i>- <a href="https://github.com/Serraniel/AniwatchPlus/releases">Changelogs</a></i>
</form> </form>
<script src="../javascript/common.min.js"></script> <script src="../javascript/common.min.js"></script>

View file

@ -42,4 +42,7 @@ onReady(() => {
// try restore options // try restore options
restoreOptions(); restoreOptions();
// update version label
document.getElementById('version').innerText = `v${chrome.runtime.getManifest().version}`
}); });