-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
148 lines (136 loc) · 5.07 KB
/
main.html
File metadata and controls
148 lines (136 loc) · 5.07 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="stylesheet" type="text/css" href="components/modal.css">
<link rel="stylesheet" type="text/css" href="components/toggle.css">
<link rel="stylesheet" type="text/css" href="components/toast.css">
<link rel="shortcut icon" type="image/x-icon" href="icons/icon_32.png">
<title>Session Panel</title>
<meta charset="utf-8" />
</head>
<body>
<div class="container-1" >
<div class = "box-1">
<div class="header-1" >
<div>
<h4 class="base">Current Window</h4>
<h4 class="base" id="NO"></h4>
<div class="name">
<div class="base" id="name"></div>
</div>
</div>
<div>
<img class="don-icon" id="don-icon" src="icons/heart-32.png" title="Donate" >
<img class="set-icon" src="icons/alch-32.png" title="Settings">
</div>
</div>
<!-- <input type="text" id="win-name"/> -->
<div class="setting-line">
<div class="tab-order">
<p class="order">Reverse order</p>
<div class="toggle">
<input type="checkbox" class="check" id="listorder">
<b class="b switch"></b>
<b class="b track"></b>
</div>
</div>
<div>
<img class="set-icon" id="show-url" src="icons/expand-all-48.png" title="Display URLs">
</div>
<div class="drop-container">
<img class="set-icon" id="sort-tog" src="icons/sort_48.png" title="Sort">
<div class="sort-list" id="sort-lst">
<a><b>Sort by:</b></a>
<a class="sort-selc" id="sort-default">Tab Order</a>
<a class="sort-selc" id="sort-title">Title</a>
<a class="sort-selc" id="sort-url">URL</a>
<a class="sort-selc" id="sort-accessed">Last accessed</a>
<a class="sort-selc" id="sort-audio">Audible</a>
</div>
</div>
<div class="set">
<img class="set-icon" id="search-tog" src="icons/search-48.png" title="Search">
</div>
</div>
<div class="search-toggle">
<form class="search-wrapper" id="sIn">
<span class="search-bar">
<input type="search" id="search" placeholder="Search Bar">
<div id="clear-search">×</div>
</span>
<!--<button type="reset"></button>-->
</form>
</div>
<div id ="tabs-list" > </div>
</div>
<div class="box-2">
<div class="windows"></div>
<!-- <h3>Other Windows</h3> -->
<div class="Window-Box"></div>
<div class="header">
<div id="session-headr-div">
<img class="outward" src="icons/chevron-right-48.png" title="Inspect Sessions">
<a href="/sessions.html" id="session-header" title="Inspect Sessions">Sessions</a>
</div>
<div>
<img class="add-icon" src="icons/add-32.png" title="Add Session">
</div>
</div>
<div class="Session-Box"> </div>
</div>
</div>
<!-- Arrow down -->
<img id="open" src="icons/arrow-down-48.png" title="Expand panel into a tab">
<!-- Modal -->
<!-- Name Session -->
<div id="add" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h3>Add a new Session</h3>
<input type="text" id="session-name" placeholder="Session NAME"/> <button id="save-button">Enter</button>
<p id="select-tabs" data-expanded="false" data-all="false">🢒 Select Tabs individually</p>
<div id="tab-selection"> </div>
</div>
</div>
<!-- Settings -->
<div id="set" class="modal">
<div class="modal-content-set">
<div class="header-2">
<div class="set-h">
<img src="icons/alch-32.png" id="alch">
<h3 >Settings</h3>
</div>
<span class="close-set">×</span>
</div>
<p>This is the first version of the Firefox add-on Session Panel and
offers no settings so far. <br> <br> Further development of this add-on depends on its reception and demand for further customization, and features as there is already a plethora of tab / session managers. <br> <br> You can support further development of this add-on by donating (click on heart symbol). <br> <br></p>
</div>
</div>
<!-- Donate -->
<div id="don" class="modal">
<div class="modal-content-don">
<div class="header-2">
<div class="set-h">
<img src="icons/heart-32.png" id="heart">
<h3 >Donate</h3>
</div>
<span class="close-don">×</span>
</div>
<p>This add-on is free for you to use. If it helps you to increase your productivity and serves your needs well, you are welcome to make a small donation.</p>
<div>
<p id="donate"> Donate with Paypal:</p>
<form action="https://www.paypal.com/donate" method="post" target="_top">
<input type="hidden" name="hosted_button_id" value="3V6CNX3AZRLQ6" />
<input id="paypal-button" type="image" src='icons/paypal-64.png' border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Donate with PayPal button"/>
<img src="https://www.paypalobjects.com/webstatic/de_DE/i/de-pp-logo-200px.png" id="pp"/>
</form>
</div>
</div>
</div>
<!-- Toast -->
<div id="toast">Display Message</div>
<script type="module" src="js/add.js"></script>
<script type="module" src="js/session.js"></script>
</body>
</html>