-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
24 lines (23 loc) · 796 Bytes
/
Copy pathpopup.html
File metadata and controls
24 lines (23 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="quicktab-popup">
<h1 class="quicktab-title">QuickTab</h1>
<label class="quicktab-option">
<input type="checkbox" id="stickyMode">
<span>Sticky panel mode</span>
</label>
<p class="quicktab-hint">Panel stays open without holding Alt. Use <kbd>j</kbd>/<kbd>k</kbd> or arrows to navigate, <kbd>Enter</kbd> to switch.</p>
<label class="quicktab-option">
<input type="checkbox" id="showNonInjectable">
<span>Show non-switchable tabs</span>
</label>
<p class="quicktab-hint">Include chrome://, Web Store and other restricted pages in the tab list.</p>
</div>
<script src="popup.js"></script>
</body>
</html>