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
|
<!DOCTYPE html>
<html theme="light">
<head>
<title>YouTube Frame Timer</title>
<meta charset="utf-8">
<meta name="keywords" content="Speedrun, Retime">
<meta name="description" content="A speedrun retime tool">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" type="text/css" media="screen">
</head>
<body>
<a href="index.html" id="back">
<!--
Source: https://www.svgrepo.com/svg/18507/back-button
License: CC0 - Creative Commons (No rights reserved)
-->
<svg viewBox="0 0 219.151 219.151">
<path d="M109.576,219.151c60.419,0,109.573-49.156,109.573-109.576C219.149,
49.156,169.995,0,109.576,0S0.002,49.156,0.002,109.575C0.002,
169.995,49.157,219.151,109.576,219.151z M109.576,15c52.148,0,
94.573,42.426,94.574,94.575c0,52.149-42.425,94.575-94.574,
94.576c-52.148-0.001-94.573-42.427-94.573-94.577C15.003,57.427,
57.428,15,109.576,15z"/>
<path d="M94.861,156.507c2.929,2.928,7.678,2.927,10.606,0c2.93-2.93,
2.93-7.678-0.001-10.608l-28.82-28.819l83.457-0.008c4.142-0.001,
7.499-3.358,7.499-7.502c-0.001-4.142-3.358-7.498-7.5-7.498l-83.46,
0.008l28.827-28.825c2.929-2.929,2.929-7.679,0-10.607c
-1.465-1.464-3.384-2.197-5.304-2.197c-1.919,0-3.838,0.733-5.303,
2.196l-41.629,41.628c-1.407,1.406-2.197,3.313-2.197,5.303c0.001,
1.99,0.791,3.896,2.198,5.305L94.861,156.507z"/>
</svg>
</a>
<h1>Page Settings</h1>
<h3 class="options">Dark Theme</h3>
<label class="switch">
<input type="checkbox" id="page_theme" onclick="change_theme()">
<span class="slider" id="slider"></span>
</label>
<br>
<br>
<h3 class="options">Remove Titles</h3>
<label class="switch">
<input type="checkbox" id="page_titles" onclick="remove_titles()">
<span class="slider" id="slider"></span>
</label>
<br>
<br>
<h3 class="options">Remove Text</h3>
<label class="switch">
<input type="checkbox" id="page_text" onclick="remove_text()">
<span class="slider" id="slider"></span>
</label>
<br>
<br>
<h3 class="options">Custom Mod Message</h3>
<textarea id="custom_mod_message" cols="40" rows="3" onchange="set_mod_message(event)"></textarea>
<!-- This needs to come after the switches switch -->
<script src="settings.js"></script>
</body>
</html>
|