forked from zchr/zoomies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.24 KB
/
index.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 rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Remove tabs that launch apps</h1>
<p>Auto-closed tabs tally: <span id="tally"></span></p>
<p>Operates on the following sites:</p>
<div class="row">
<input type="checkbox" name="around" /><label for="around">Around</label>
</div>
<div class="row">
<input type="checkbox" name="asana" /><label for="asana">Asana</label>
</div>
<div class="row">
<input type="checkbox" name="aws" /><label for="aws">AWS</label>
</div>
<div class="row">
<input type="checkbox" name="figma" /><label for="figma">Figma</label>
</div>
<div class="row">
<input type="checkbox" name="linear" /><label for="linear">Linear</label>
</div>
<div class="row">
<input type="checkbox" name="miro" /><label for="miro">Miro</label>
</div>
<div class="row">
<input type="checkbox" name="notion" /><label for="notion">Notion</label>
</div>
<div class="row">
<input type="checkbox" name="teams" /><label for="teams">Teams</label>
</div>
<div class="row">
<input type="checkbox" name="zoom" /><label for="zoom">Zoom</label>
</div>
<script src="script.js"></script>
</body>
</html>