-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
83 lines (81 loc) · 2.41 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
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
<!-- A chrome extension for 'tabzhub' application by team:Knights Watch-->
<!Doctype html>
<html lang="en">
<head>
<title>tabZhub</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/general.css">
<link rel="stylesheet" type="text/css" href="themes/base/jquery-ui.css">
<style type="text/css">
.ui-accordion .ui-accordion-content {
padding: 0em 1.2em;
}
.ui-widget .ui-widget {
font-size: .6em;
}
#footer {
text-align: center;
margin: 5px;
}
#message_box {
width: 100%;
height: 5%;
padding: 5px;
margin: 5px;
}
.ui-autocomplete-category {
font-weight: bold;
padding: .2em .2em;
margin: .4em 0 .2em;
line-height: 1;
}
.ui-menu {
position: absolute;
width: 100px;
}
</style>
</head>
<body>
<div id="top_container">
<div id="saveForm">
Currently Open tabs :<p id="numt"></p>
<br>
<div id="message_box"></div>
<!--form name="tabForm" action="http://tabzhub.appspot.com/save" method="POST"-->
<form id="save_session_form" name="tabForm" method="POST">
<label for="search">Session </label>
<input type="text" name="name" id="namebox" required>
<input type="hidden" name="urls" id="urls" />
<!--input type="hidden" name="full_name" id="full_name" /-->
<label for="search">Public </label>
<input type="checkbox" name="type" />
<input id ="save" type="submit" value="Save" />
<input type="button" value="Import" id="impt" />
<input type="button" value="Import in Incognito" id="imptInco" />
</form>
</div>
<hr />
<div class="ui-widget search_box">
<label for="search">Search: </label>
<input type="text" id="search" />
</div>
</div>
<div id="bottom_container">
<div id="accordion">
<img id="loader_img" src="images/loader.gif" alt="Fetching data...">
</div>
<div id="moreSessions">
<button id="moreSessions_btn">More sessions</button>
</div>
<div id="footer">
<a href="http://tabzhub.appspot.com/index" target="_blank">Visit Website</a> <br>
<p>© 2013 team tabZhub</p>
</div>
</div>
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/popup.js"></script>
<script src="js/moment.min.js"></script>
<script src="js/pretty.js"></script>
</body>
</html>