forked from magicoflolis/Userscript-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
32 lines (31 loc) · 1.03 KB
/
Copy pathoptions.html
File metadata and controls
32 lines (31 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en" style="background-color: #202023;color: #e8eaed;">
<head>
<meta charset="utf-8"/>
<title>UserJS - Options</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="icon" sizes="any" type="image/png" href="/img/icon_96.png">
<link rel="stylesheet" href="css/magicuserjs.css" />
</head>
<body class="userjs-options">
<form>
<section class="select">
<span>Theme</span>
<select name="theme">
<option disabled value="light">Light</option>
<option value="dark">Dark</option>
</select>
</section>
<section class="checkbox">
<label>
<span>Enable "Greasyfork Search with Sleazyfork Results include"</span>
<div class="switch">
<input type="checkbox" name="sleazyfork" id="sleazyfork" />
<label for="sleazyfork"></label>
</div>
</label>
</section>
</form>
<script src="js/options.js"></script>
</body>
</html>