-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
38 lines (35 loc) · 896 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Autotask - Only with Tabs</title>
<style type="text/css">
body {
background: red;
color: white;
max-width: 250px;
min-width: 250px;
font-size: 12px;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<h3>Options:</h3>
<p>
<label>
<input type="checkbox" id="opt_cur" checked>
Open Autotask tabs next to current tab instead at the end of all tabs.
</label>
<br>
<label>
<input type="checkbox" id="opt_rename" checked>
Renames ticket tabs with the ticket title.
</label>
<br>
<label>
<input type="checkbox" id="opt_pop" checked>
Add Autotask to list of whitelisted popups (helps with LiveLinks/external links) - Requires Chrome restart.
</label>
</body>
</html>