-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpopup.html
93 lines (71 loc) · 2 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
83
84
85
86
87
88
89
90
91
92
93
<!-- yalllinks, an example of a google chrome extension -->
<!-- (C) Timothy Jones, October 2013 -->
<!-- GNU Public license applies -->
<!DOCTYPE html>
<html>
<head>
<style>
body {
/* min-width:357px; */
overflow-x:hidden;
}
</style>
<title>Tab-Snap</title>
<link rel="stylesheet" type="text/css" href="de.css" media="all" />
<script src="jquery-2.0.3.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div id="content">
<div id="getem">
<fieldset class="fs1">
<legend class="up">SNAPSHOT</legend>
<fieldset class="fs2">
<form action="#">
<!--<legend>Get list of tab URLs</legend>-->
<div id="getgone"><label>Click here to get URLs.</label></div>
</form>
</fieldset>
</div>
<br>
<fieldset class="fs1">
<legend class="up">RESTORE</legend>
<form action="#">
<fieldset class="fs2">
<legend>Paste and open list of URLs</legend>
<br>
<FORM NAME="myform" ACTION="" METHOD="GET"><p3>Paste (type: [Ctrl] v) list of URLs:</p3><BR>
<INPUT TYPE="text" NAME="inputbox" VALUE="" SIZE=30>
<button id="button1">Open List</button>
</FORM>
</fieldset>
<!--
<div id="pastem">
<label>Click here to paste URLs.</label>
</div>
</form>
<!--
<legend class="down">Paste and open list of URLs</legend>
<br>
<FORM NAME="myform" ACTION="" METHOD="GET"><p3>Paste (type: [Ctrl] v) list of URLs:</p3><BR>
<INPUT TYPE="text" NAME="inputbox" VALUE="" SIZE=30>
<button id="button1">Open List</button>
</FORM>
-->
<!-- </fieldset> -->
<h3>or</h3>
<!--<form action="#">-->
<fieldset class="fs2">
<legend class="down">Open a text or csv file</legend>
<input type="file" id="file" name="file" />
<output id="list"></output>
</fieldset>
</fieldset>
<!--<h1><img src="icon128.png" width="20px" style="margin:2px; margin-left:25px;"><i>Tab-Snap</i><img src="icon128.png" width="20px" style="margin:3px"></h1> -->
<center>
<p class="small"><a href="options.html">options</a></p>
</center>
</div>
<textarea id="clipboardBuffer"></textarea>
</body>
</html>