-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
53 lines (41 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head><title>My Test Extension Options</title></head>
<link rel="stylesheet" href="options.css">
<script type="text/javascript" src="options.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<body>
<div class="container-fluid g">
<div class="row">
<div class="col-sm-1">
Sh It.
<br>
<br>
<a href="#">Whitelist</a>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<a id="settingsheader" href="#">Settings</a>
</div>
<div class="col-sm-9 row1">
Enter domains to mute on tab creation:<br>
<input id="whitelist" type="text">
<br>
<button id="submitItem">Submit</button>
<br>
Click on URL to delete it
<ul id="listflow">
</ul>
<form action="/html/codes/html_form_handler.cfm" method="get">
<input type="radio" name="preferred_color" value="Red" /> Red<br />
<input type="radio" name="preferred_color" value="Blue" /> Blue<br />
<input type="radio" name="preferred_color" value="Green" /> Green<br />
<input type="submit" value="Submit">
</form>
<label>
<input type="checkbox" id="like">
I like colors.
</label>
</div>
</div>
</div>
</body>
</html>