-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
90 lines (69 loc) · 3.36 KB
/
options.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
<!-- HTML file for the settings page-->
<!DOCTYPE html>
<html lang="en" dir="ltr" data-platform="chromium" data-application="chrome" data-store="chrome"></html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title id="title">
Linkpiler - The Organizer of Links
</title>
<link href="options.css" rel="stylesheet" type="text/css" />
<script src="options.js"></script>
<div class="tab">
<h2 id="word">Linkpiler Settings</h2>
<button class="subtab" id="AbtPg" role="tabpanel">About</button>
<button class="subtab" id="WebBlk" role="tabpanel">Add/Remove Websites</button>
<button class="subtab" id="Setngs" role="tabpanel">Configure</button>
</div>
<div id="AboutPage" class="subtabinfo">
<h1>About Page</h1>
<p id="explain">This extension allows you to organize websites you encounter. Currently, there are 5 pre-built
folders and they are Coding, School, Social Media, Entertainment, and Miscellaneous.
To add/remove links to/from folders, you can either use this webpage (click on the
"Add/Remove Websites") tab or right click and add/remove from the Linkpiler context menu. Unfortunately,
this extension does not currently supported custom folders. That functionality will be added
in future versions.
</p>
</div>
<div id="webblock" class="subtabinfo">
<h1>Website List</h1>
<div id="folders">
<div class="dropdown">
<button onclick="dropdown()" id="dropbutton" class="dropbtn">Select Folder</button>
<div id="myDropdown" class="dropdown-content">
<a href="#" id="coding" onclick="renameDropdown1()">Coding</a>
<a href="#" id="school" onclick="renameDropdown2()">School</a>
<a href="#" id="socialmedia" onclick="renameDropdown3()">Social Media</a>
<a href="#" id="entertainment" onclick="renameDropdown4()">Entertainment</a>
<a href="#" id="miscellaneous" onclick="renameDropdown5()">Miscellaneous</a>
</div>
</div>
<div class="inputurls">
<div id="url">
<p style="font-size: 20px;">Add URL to Folder: </p>
<p id="incorrect"> </p>
</div>
<div id="urlinput">
<div id="theinput">
<input id="inputtext" type="text" placeholder="e.g. www.example.com" width="50" height="30">
</div>
<div id="addurls">
<button id="urlbutton" type="submit" style="width:70px; height:30px" disabled>Add</button>
</div>
<div id="clearall">
<button id="clear" type="submit" style="width:100px; height:50px; color: red">Clear All Added Websites</button>
</div>
</div>
</div>
</div>
<div id="container">
<hr id="line">
<p id="nowebsites">You don't currently have any added websites.</p>
</div>
</div>
<div id="settings" class="subtabinfo">
<h1>Configure</h1>
<p>Focus Mode:</p>
<p> TO BE COMPLETED</p>
</div>
</head>