-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
23 lines (23 loc) · 924 Bytes
/
options.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Settings</title>
</head>
<body>
<form>
<h1>Hide release groups in MangaDex</h1>
<label for="hidden-groups">Hide releases from these groups:</label><br/>
<textarea id="hidden-groups" placeholder="Insert group names here. One name per line." rows="5" cols="50"
style="min-width: 20%; max-width: 100%"></textarea>
<br/>
<h1>Hide uploaders in MangaDex</h1>
<label for="hidden-uploaders">Hide releases from these uploaders:</label><br/>
<textarea id="hidden-uploaders" placeholder="Insert uploaders names here. One name per line." rows="5" cols="50"
style="min-width: 20%; max-width: 100%"></textarea>
<br/><br/>
<button type="submit">Save</button>
</form>
<script src="options.js"></script>
</body>
</html>