forked from XFox111/TabsAsideExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TabsAside.html
96 lines (86 loc) · 3.23 KB
/
TabsAside.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<title loc="name">Tabs aside</title>
<link id="icon" rel="shortcut icon" type="image/png" href="icons/light/empty/16.png" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/style.generic.css" />
<link rel="stylesheet" type="text/css" href="css/style.dark.css" />
<link rel="stylesheet" type="text/css" href="css/style.listview.css" />
<meta charset="utf-8" />
</head>
<body>
<div class="tabsAside background">
<div class="tabsAside closeArea"></div>
<aside class="tabsAside pane">
<header>
<h1 loc="name">Tabs aside</h1>
<button loc_alt="options" class="btn more" title="Options"><span class="updateBadge"></span></button>
<nav>
<label class="checkbox control">
<input id="loadOnRestore" type="checkbox" />
<span class="mark"></span>
<span loc="loadOnRestore">Load tabs on restore</span>
</label>
<label class="checkbox control">
<input id="swapIconAction" type="checkbox" />
<span class="mark"></span>
<span loc="swapIconAction">Set tabs aside on extension icon click (Alt+P or right-click to open the pane)</span>
</label>
<label class="checkbox control">
<input id="showDeleteDialog" type="checkbox" />
<span class="mark"></span>
<span loc="showDeleteDialog">Show confirmation dialog before deleting an item</span>
</label>
<hr />
<div>
<button value="https://github.com/xfox111/TabsAsideExtension">
<img src="icons/github.svg"/>
<span loc="github">Visit GitHub page</span>
</button>
<button value="https://github.com/XFox111/TabsAsideExtension/releases/latest">
<img src="icons/list.svg"/>
<span loc="changelog">Changelog</span>
<span class="updateBadge"></span>
</button>
<button feedback-button>
<img src="icons/feedback.svg"/>
<span loc="feedback">Leave feedback</span>
</button>
<button value="https://buymeacoffee.com/xfox111">
<img style="filter: none !important;" src="icons/bmc.svg"/>
<span loc="buyMeACoffee">Buy me a coffee!</span>
</button>
</div>
<hr />
<p>
<small>v1.0</small><br />
<span loc="credits">Developed by Michael Gordeev</span> (<a href="https://twitter.com/xfox111" target="_blank">@xfox111</a>)
</p>
</nav>
<button loc_alt="closePanel" class="btn remove" title="Close panel"></button>
<a class="saveTabs">
<span class="iconArrowRight"></span>
<span loc="setAside">Set current tabs aside</span>
<span loc_alt="setMultipleTabsAsideTooltip" class="iconQuestionCircle" title="Tip : You can set aside specific tabs by selecting them (by holding CTRL or SHIFT and clicking on the tabs) before clicking on the TabsAside extension"></span>
</a>
<div class="listviewSwitch tile">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="listviewSwitch list">
<div></div>
<div></div>
<div></div>
</div>
</header>
<section>
<h2 loc="nothingSaved">You have no aside tabs</h2>
</section>
</aside>
</div>
<script type="text/javascript" src="js/aside-script.js"></script>
</body>
</html>