-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
42 lines (39 loc) · 2.45 KB
/
popup.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
<!--
TabJuggler: Chrome/Chromium Extension. Manage your Tabs!
Copyright (C) 2010 Luca Belluccini
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<!DOCTYPE html>
<html>
<head>
<link href="assets/styles/popup.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/popup.js"></script>
</head>
<body>
<div onclick="backgroundPage.allTabsToOneWindow()" class="toolstrip-button">All Tabs in one Window</div>
<div onclick="backgroundPage.oneWindowForEachTab()" class="toolstrip-button">One Window for each Tab</div>
<div onclick="backgroundPage.oneWindowForEachHostName()" class="toolstrip-button">One Window for each Hostname</div>
<div onclick="backgroundPage.sortAllTabsInWindowBy('title')" class="toolstrip-button">Sort all Tabs in Window by Title</div>
<div onclick="backgroundPage.sortAllTabsInWindowBy('hostname')" class="toolstrip-button">Sort all Tabs in Window by Hostname</div>
<div onclick="backgroundPage.sortAllTabsInWindowBy('url')" class="toolstrip-button">Sort all Tabs in Window by Url</div>
<!--<div onclick="removeDuplicateTabs()" class="toolstrip-button">Remove Duplicate Tabs</div>-->
<div class="separator"></div>
<div id="tabFilterInput" class="toolstrip-button">
<input type="search" id="tabSearch" name="tabSearch" onsearch="refreshTabFilterResult()" oninput="refreshTabFilterResult()" results="5" autofocus placeholder="Search..." autosave="unique">
<input type="checkbox" onclick="refreshTabFilterResult()" id="caseSensitive" name="caseSensitive"/><label for="useRegExp">Case Sensitive</label>
<input type="checkbox" onclick="refreshTabFilterResult()" id="inThisWindowOnly" name="inThisWindowOnly"/><label for="useRegExp">In This Window Only</label>
<div class="separator-empty"></div>
</div>
</body>
</html>