-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
45 lines (41 loc) · 1.39 KB
/
popup.html
File metadata and controls
45 lines (41 loc) · 1.39 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<title>RarePatternsScanHelper</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="wrapper">
<h2>RarePatternsScanHelper</h2>
<!-- main buttons -->
<div class="controls">
<button id="start_scanning" class="btn start">▶ Start</button>
<button id="stop_scanning" class="btn stop">⏹ Stop</button>
<!-- блок экспорта -->
<div class="export-block">
<button id="export_results" class="btn export">💾 Export</button>
<select id="export_format" class="select">
<option value="csv">CSV</option>
<option value="json">JSON</option>
<option value="txt">TXT</option>
</select>
</div>
</div>
<!-- блок задержки -->
<div class="delay-block">
<label for="delay_input">⏱ Delay (ms):</label>
<input id="delay_input" type="number" min="3000" step="500" value="6000" class="input" />
</div>
<!--status -->
<div id="progressbar" class="progressbar"></div>
<div id="status"></div>
<!-- results -->
<h3>Results</h3>
<div class="results">
<ul id="results_list"></ul>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>