forked from ffaristocrat/lazytroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
44 lines (41 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="jquery-3.3.1.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<form class="form">
<b>Block accounts with</b>
<fieldset>
<div><label>
<input type="checkbox" id="blockDefaultProfileImage">
default profile image
</label></div>
<div><label>
<input type="checkbox" id="blockScreenNameIsNumeric">
screen name ending with 8 digits
</label></div>
<div><label>
<input type="checkbox" id="blockProfileTextIsNull">
blank profile text
</label></div>
<div><label>
fewer than
<input type="number" id="minimumFollowers" min="0" max="99999">
followers
</label></div>
</fieldset>
<b>keywords in profile</b>
<fieldset><label>
<textarea style="overflow:auto;" rows="10" cols="40" id="profileKeywordList"></textarea>
</label></fieldset>
<b>keywords in user name</b>
<fieldset><label>
<textarea style="overflow:auto;" rows="10" cols="40" id="userNameKeywordList"></textarea>
</label></fieldset>
<button id="save" type="submit">Save</button>
<button class="cancel" type="button">Cancel</button>
</form>
</body>
</html>