-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
38 lines (37 loc) · 1.36 KB
/
popup.html
File metadata and controls
38 lines (37 loc) · 1.36 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
<!--
/********************************************************
* Project : Tab Flow
* Author : David Young
* Date : May 1, 2013
* Copyright : All rights reserved.
* Licence : Feel free to make changes for your own use,
* but you are not permitted to release anything
* based on my code in whole or in part.
********************************************************/
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Monda:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<form>
<label for="onlyCurrentWindow">Limit to current window?</label>
<input type="checkbox" id="onlyCurrentWindow" /><br />
<label for="useURLs">Use URLs?</label>
<input type="checkbox" id="useURLs" /><br />
<label for="hideDiscarded">Hide discarded tabs?</label>
<input type="checkbox" id="hideDiscarded" /><br />
Search:
<input type="text" id="filter" /><br />
<a href="#" id="bookmark">Bookmark</a> |
<a href="#" id="move">Move (new window)</a> |
<a href="#" id="discard">Discard</a> |
<a href="#" id="close">Close</a>
</form>
<div id="feedback"></div>
<div id="windows"></div>
<script src="Lil.js"></script>
<script src="popup.js"></script>
</body>
</html>