-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
executable file
·37 lines (37 loc) · 1.34 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
<!-- File: popup.html -->
<!DOCTYPE html>
<meta charset = "UTF-8">
<html>
<head>
<meat name = "description" content = "An extension to save the links of all open tabs to read later">
<meta name = "author" content = "Umayah Abdennabi">
<meta name = "author" content = "Muhammad Khalid">
<meta name = "keywords" content = "bookmark, save, links, tabs, chrome-extension">
<link rel = "stylesheet" type = "text/css" href = "css/Buttons.css"/>
<link rel = "stylesheet" type = "text/css" href = "css/PopupStatus.css"/>
</head>
<body bgcolor = "#ffffff">
<center><h3><font color=#79BCEA>
<p id="TopLabel">
Open Tabs
</p>
</font></h3></center>
<div class="scrollContainer">
<div class="innerScroll">
<ol id="openLinks"></ol>
</div>
</div>
<center>
<p id="saveInNewP">
<input type=checkbox id="saveInNew">Save in new folder.
<input type=textbox id="saveInNewName" value="">
</p>
<button id = "SaveLinks">Save Checked Links</button>
<p id = "StatusLabel"></p>
</center>
<a href="http://sudohalt.github.io/LinkSave/" id="infoPage">info</a>
<script src = "js/jquery-2.1.3.min.js"></script>
<script src = "js/Buttons.js"></script>
<script src = "js/StatusLabel.js"></script>
</body>
</html>