Fix import
* Add options page to import/export (export also possible from popup) * Change popup import to open options * Add separate store.js file for common code between popup and options * Bump version to 1.5.0
This commit is contained in:
parent
c20a6397fc
commit
b9d8c89120
7 changed files with 679 additions and 501 deletions
24
options.html
Normal file
24
options.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="stylesheet" href="options.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1><img src="/icons/uotp.svg" />uOTP Options</h1>
|
||||
<div class="action">
|
||||
<button id="export" title="Export">
|
||||
<img src="/icons/export.svg" />Export
|
||||
</button>
|
||||
<button id="import" title="Import">
|
||||
<img src="/icons/import.svg" />Import
|
||||
</button>
|
||||
</div>
|
||||
<div id="notification">
|
||||
<pre id="notification-text"> </pre>
|
||||
<img src="/icons/close.svg"/>
|
||||
</div>
|
||||
<script type="module" src="/options.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue