forked from nickbaum/simple-window-saver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
39 lines (32 loc) · 1.07 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
<html>
<head>
<link id="style" rel="stylesheet" type="text/css" href="popup.css" />
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<div>
<form id="form">
Save as: <input type="text" id="nameInput" />
</form>
<div id="incognitoMsg">Note: you can't save incognito windows.</div>
<ul id="savedWindowList">
<li id="template">
<span class="text">Name</span><!--
--><span class="delete">
×
</span><!--
--><span class="undo">
undo
</span>
</li>
</ul>
<div id="footer">
<span id="updated">
<img src="new.png" /> The extension has been updated (<a href="https://chrome.google.com/extensions/detail/fpfmklldfnlcblofkhdeoohfppdoejdc" target="_blank">details</a>)<br/>
If you like this extension, please <a href="https://chrome.google.com/extensions/detail/fpfmklldfnlcblofkhdeoohfppdoejdc" target="_blank">rate it</a>. Thanks!<br/>
</span>
Bugs or suggestions? <a href="mailto:[email protected]" target="_blank">Contact me.</a>
</div>
</div>
</body>
</html>