-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
35 lines (35 loc) · 1.03 KB
/
options.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
<style>
textarea {
font-size:1em;
font-family: "Courier New", Courier, monospace
}
</style>
<body>
<h1>Link Speed options</h1>
<div id="content">
<fieldset id="fieldset">
<div>
<input type="radio" id="log" name="mode">
<label for="log">Log mutation</label>
</div>
<div>
<input type="radio" id="highlight" name="mode">
<label for="highlight">Highlight slow links</label>
</div>
<div>
<input type="radio" id="font_color" name="mode">
<label for="font_color">Slow links are red</label>
</div>
<div>
<input type="radio" id="warning_icon" name="mode">
<label for="warning_icon">Slow links have a warning icon after them</label>
</div>
<div>
<input type="radio" id="eval" name="mode">
<label for="eval">Eval</label>
<div>function(state, link, speed) {<textarea id="textarea" rows="15" style="width: 100%"></textarea>}</div>
</div>
</fieldset>
</div>
</body>
<script src="options.js"></script>