-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
27 lines (23 loc) · 1.2 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/settings.css">
</head>
<body>
<form name="checkboxes">
<input type="checkbox" id="theatre_automatic"> Disable: Automatic theatre mode<br>
<!-- <input type="checkbox" id="resize_top_panel"> Disable: Top panel resizing/hiding when in theatre mode<br>-->
<input type="checkbox" id="remove_spark"> Disable: Remove sparks next to the name<br>
<input type="checkbox" id="move_badge"> Disable: Move badge in front of username<br>
<input type="checkbox" id="remove_avatars"> Disable: Remove avatars<br>
<input type="checkbox" id="compact_chat"> Disable: Compact chat<br>
<input type="checkbox" id="keyboard_control"> Disable: Keyboard control (TAB, SPACE, M, T, F,LEFT/RIGHT ARROW)<br>
<input type="checkbox" id="black_theatre"> Disable: Black background when in theatre<br>
<input type="checkbox" id="remove_purchase"> Disable: Remove some 'purchase' buttons<br>
<input type="checkbox" id="sub_only"> Sub only chat<br>
<button type="submit">Save</button>
</form>
<script src="js/settings.js"></script>
</body>
</html>