* 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
24 lines
No EOL
625 B
HTML
24 lines
No EOL
625 B
HTML
<!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> |