-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
36 lines (32 loc) · 1.17 KB
/
options.html
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
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<section class="shortcuts">
<h2>Shortcuts</h2>
<p>
<em class="error" style="display: none">The options below require Firefox 60, but it appears that you are using an older version.</em>
<form class="browser-style">
<label>Open/Hide panorama</label>
<input type="text" id="shortcut">
<button id="update-shortcut" class="browser-style">Update</button>
<button id="reset-shortcut" class="browser-style">Reset</button>
</form>
<em><a href="https://developer.mozilla.org/en-US/Add-ons/WebExtensions/manifest.json/commands#Key_combinations" target="_blank">The format for the shortcut option is detailed here</a></em>
</p>
</section>
<section>
<h2>Backups</h2>
<!--h3>Import</h3>
<p>Imported backups will open in new windows and not over write anything.<br>You can also import backups from the old "Tab Groups" add-on.</p>
<p><input id="backupFileInput" name="backupFile" type="file" accept=".json"></p-->
<h3>Export</h3>
<p>
<button id="saveBackupButton" class="browser-style">Save backup</button>
</p>
</section>
<script src="js/options.js"></script>
</body>
</html>