-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpopup.html
More file actions
32 lines (32 loc) · 1.28 KB
/
popup.html
File metadata and controls
32 lines (32 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>X-Wikimedia-Debug popup</title>
<link rel="stylesheet" href="popup.css">
</head>
<body class="body-hidden">
<div class="warning" hidden>
<p>Unsupported domain.</p>
</div>
<div class="main-popup">
<div class="row">
<div class="col">
<select class="option" id="backend">
<option value="1" selected>(Unspecified backend)</option>
</select>
</div>
<div class="ui-switcher option" aria-checked="false" tabindex="0" role="checkbox" id="enabled"><span class="ui-switcher-grip"></span></div>
</div>
<div class="options">
<label class="ui-checkbox"><input class="option" type="checkbox" id="excimer"><span></span>Excimer UI</label>
<label class="ui-checkbox"><input class="option" type="checkbox" id="profile"><span></span>XHGui</label>
<label class="ui-checkbox"><input class="option" type="checkbox" id="forceprofile"><span></span>Inline profile</label>
<label class="ui-checkbox"><input class="option" type="checkbox" id="log"><span></span>Verbose log</label>
<label class="ui-checkbox"><input class="option" type="checkbox" id="readonly"><span></span>Read-only DB</label>
</div>
</div>
<ol class="output"></ol>
<script src="popup.js"></script>
</body>
</html>