-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
53 lines (48 loc) · 1.84 KB
/
Copy pathpopup.html
File metadata and controls
53 lines (48 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Trigger Remover</title>
<link href="assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/css/popup.css" rel="stylesheet" />
</head>
<body class="p-3">
<div id="container" style="width: 480px">
<h1>Trigger Remover
<!-- On/Off button -->
<a href="#" class="link-primary" id="toggle">
<img src="#" id="toggle-icon" class="toggle-icon"/>
</a>
</h1>
<table>
<tr style="width: 100%;">
<td>
<div class="form-group">
<!-- Exposure Slider -->
<h3><label for="exposure_slider">Exposure Ratio: </label><label id="exposure_ratio"> </label></h3>
<label id="exposure_label"> </label>
<div class="slidecontainer">
<input type="range" min="0" max="100" value="0" class="slider" id="exposure_slider">
</div>
<a href="https://www.simplypsychology.org/exposure-therapy.html" target="_blank"> Read about Exposure Therapy </a>
</div>
</td>
<td>
<div class="mt-3">
<!-- Link to Editor Page -->
<a href="/list-editor.html?hidden=true" id="listEditorLink"> Open Trigger List Editor </a>
</div>
</td>
</tr>
</table>
<div class="mt-3">
<a href="#" id="optionsLink"> Options Page </a>
</div>
</div>
<script src="assets/js/lib/browser-polyfill.min.js"></script>
<script src="assets/js/lib/jquery.min.js"></script>
<script src="assets/js/trigger-remover.js"></script>
<script src="assets/js/pages/popup.js"></script>
</body>
</html>