-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmastertab.html
More file actions
50 lines (46 loc) · 1.89 KB
/
Copy pathmastertab.html
File metadata and controls
50 lines (46 loc) · 1.89 KB
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
<!DOCTYPE html>
<html>
<head>
<title>MasterTab!</title>
<script src="/src/utils.js"></script>
<script src="/src/helpers.js"></script>
<script src="/src/storage.js"></script>
<script src="/src/handlers.js"></script>
<script src="/src/categories.js"></script>
<script src="/src/tabs.js"></script>
<script src="mastertab.js"></script>
<link rel="stylesheet" href="/src/stylesheets/mastertab.css"/>
<link rel="stylesheet" href="/src/stylesheets/import-export.css"/>
<link rel="stylesheet" href="/src/stylesheets/options.css"/>
<link rel="import" href="../import-export/import-export.html" id="import-export-link" async/>
<link rel="import" href="../options/options.html" id="options-link" async/>
</head>
<body>
<header id="main-title"><h1><a href="#">MasterTab!</a></h1></header>
<div id="main-options">
<a id="github-link" target="_blank" href="https://github.com/erdpx/mastertab">GitHub!</a>
<button id="master-tab-import-export">Import/Export!</button>
<button id="master-tab-options">Options!</button>
</div>
<nav>
<div id="header-menu">
<ul>
<li>
<input type="text" placeholder="Search for specific tabs" id="search-tab-input"></input>
</li>
<li id="select-all-tabs">
<button>All tabs</button>
</li>
<li>
<input type="text" placeholder="Add new category" id="new-category-input" maxlength="45"></input>
<button id="new-category-btn">Add</button>
</li>
</ul>
</div>
</nav>
<div id="flash-msg"></div>
<div id="main-content">
<div id="all-tabs"></div>
</div>
</body>
</html>