forked from pjh5000/TabGroupsForChrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manager.html
59 lines (57 loc) · 2.79 KB
/
manager.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
<!DOCTYPE html>
<html>
<head>
<title>Tab Groups for Chrome™</title>
<meta charset="utf-8">
<link rel="stylesheet" media="all" href="page.css" type="text/css" />
<script src="src/ext_lib/jquery.js"></script>
<script src="src/ext_lib/HugeStorageSync.class.js"></script>
<script src="src/classes.js"></script>
<script src="src/browser.js"></script>
<script src="src/storage.js"></script>
<script src="src/retrieval.js"></script>
<script src="src/manipulation.js"></script>
<script src="src/drag_and_drop.js"></script>
<script src="src/script.js"></script>
<script src="src/buttons.js"></script>
</head>
<body>
<header>
<div id="help">
<img src="img/help.png" alt="help" height="20" />
<div id="help_hidden">
<p><strong>How to use this extension:</strong></p>
<p>On this page you can:</p>
<ul>
<li>Create and remove tab groups</li>
<li>View the tabs within each group</li>
<li>Add and remove tabs in a group</li>
<li>Click on a tab in a group to go to it</li>
<li>Drag tabs from one group to another group</li>
<li>Click on the 'Open Tab Group' button to open all the tabs in that group and close the tabs in
the previously open group</li>
<li>Add and modify tab group names</li>
</ul>
<p>This extension is maintained by pjh5000. The underlying source code can be found at: <a
href="https://github.com/pjh5000/TabGroupsForChrome" target="_blank">https://github.com/pjh5000/TabGroupsForChrome</a>
</p>
<p>The code is based on the original <a
href="https://chrome.google.com/webstore/detail/tabsfolder/pdfepgdcmifhbmldcofnkmnbabamjdnm"
target="_blank">TabsFolder</a> extension by Conchilicultor, available from: <a
href="https://github.com/Conchylicultor/TabsFolder" target="_blank">https://github.com/Conchylicultor/TabsFolder</a>.
</p>
<p>Tab icons made by <a href="http://www.flaticon.com/authors/picol" title="Picol" target="_blank">Picol</a>
from <a
href="http://www.flaticon.com" title="Flaticon" target="_blank">www.flaticon.com</a>, licensed by <a
href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC
3.0 BY</a>.</p>
<p>I hope you find this extension useful.</p>
</div>
</div>
<button type="button" id="create_group">Create Tab Group</button>
<p>Manage your tab groups from this page:<span id="nb_tabs"></span></p>
</header>
<div id="groups_list">
</div>
</body>
</html>