-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
62 lines (61 loc) · 1.89 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Bing Searcher</title>
<link rel="stylesheet" type="text/css" href="popup.css" />
<script src="popup.js"></script>
</head>
<body>
<h1>Bing Searcher</h1>
<form id="search-form">
<label for="num-searches">Number of searches:</label> <br>
<label>D:</label><input
type="number"
id="num-searchesD"
name="num-searchesD"
min="1"
max="50"
value="40"
required
/>
<label>M:</label><input
type="number"
id="num-searchesM"
name="num-searchesM"
min="1"
max="50"
value="25"
required
/> <br>
<label for="search-type">Search type:</label> <br>
<select id="search-type" name="search-type" required>
<option value="desktopmobile">Desktop & Mobile</option>
<option value="desktop">Desktop</option>
<option value="mobile">Mobile</option>
</select> <br>
<label for="precise">
<input type="radio" id="precise" name="search-gen" value="precise" >
Precise
</label>
<label for="random">
<input type="radio" id="random" name="search-gen" value="random" checked="checked">
Random
</label>
<br>
<button type="submit">Start</button>
<button type="button" id="stop-button">Stop</button>
<button type="button" id="game-fix-button">Game</button>
<p>Notice: Don't use Auto Search. It gives temporary ban, be safe</p>
<!-- <table>
<tr>
<td><button type="submit">Start</button></td>
<td><button type="button" id="stop-button">Stop</button></td>
<td><button type="button" id="game-fix-button">Game</button></td>
</tr>
<tr>
<td><button type="button" id="game-fix-button">Shopping-Game</button></td>
</tr>
</table> -->
</form>
</body>
</html>