-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
56 lines (49 loc) · 1.4 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
<!doctype html>
<html style="width: 200px">
<head>
<title>Minesweeper Helper</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
width: 150px;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
max-width: 400px;
}
span {
display: block;
}
</style>
</head>
<body style="width: 200px">
<h3>Minesweeper Helper</h3>
<!-- <div>
<label>Style:</label>
<select id="playstyle">
<option value="flag">Flagging</option>
<option value="noflag">No flagging</option>
<option value="eff">Efficiency</option>
<option value="nfeff">NF Efficiency</option>
</select>
</div><br/>
<div class="checkboxes">
<label><input type="checkbox" class="checkbox" id="showhints" checked /> <span>Show hints</span></label>
</div><br/>
<div>
<label>Overlay:</label>
<select id="overlay">
<option value="none">None</option>
<option value="safety">Safety %</option>
<option value="mine">Mine %</option>
</select>
</div><br/> -->
<button id="AnalysisButton">Analyse</button>
<button id="export">Export board</button>
</body>
<script src="popup.js"></script>
</html>