-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
24 lines (22 loc) · 898 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./popup.css" />
</head>
<body>
<h1 class="title">Chrome Tabs Manager</h1>
<h3 class="sub_title"> Time Frame</h3>
<select class="select_tag" id="select_tag">
<option value="30Mins"> Every 30 Minutes</option>
<option value="Weekly"> Weekly</option>
<option value="Bi_Monthly"> Every two weeks</option>
<option value="Monthly"> Monthly</option>
</select>
<button class="btn">Configure</button>
<p id="alert">Select duration when you want your tabs saved to bookmarks and cleared. Don't forget to click the Configure button</p>
<script src="./popup.js" type="module"></script>
</body>
</html>