-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (45 loc) · 1.33 KB
/
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
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #262626;
text-align: center;
color: white;
}
label {
justify-content: center;
display: flex;
align-items: center;
text-align: center;
}
#donate {
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<h1>Vulkan Tweaks</h1>
<button id="addtowhitelist">Enable on this site!</button>
<h3>Themes</h3>
<form>
<select id="themes">
<option value="None">None</option>
<option value="Dark">Dark</option>
</select>
<h3>Options</h3>
<label for="saveLast">
<input type="checkbox" id="saveLast">
Save last choice
</label>
<label for="themeTransition">
<input type="checkbox" id="themeTransition">
Theme transition
</label>
</form>
<br>
<a target="newtab" id="donate" href="https://paypal.me/100Daisy">Donate Me!</a>
<script src="settings.js" type="text/javascript"></script>
</body>
</html>