blob: 16da658495586ab8d60efec8b79383e669420a5c (
plain)
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
|
<!doctype html>
<html>
<head>
<title>Chrome Copy URLs From All Tabs - Options</title>
<link rel="stylesheet" href="chrome-bootstrap.css" type="text/css" media="screen" />
<style>
#main { opacity: 1; }
</style>
</head>
<body class="chrome-bootstrap">
<div class="frame">
<div class="mainview view">
<div id="main">
<header>
<h1>Chrome Copy URLs from All Tabs</h1>
</header>
<div class="content">
Favorite color:
<select id="color">
<option value="red">red</option>
<option value="green">green</option>
<option value="blue">blue</option>
<option value="yellow">yellow</option>
</select>
<label>
<input type="checkbox" id="like">
I like colors.
</label>
<div id="status"></div>
<button id="save">Save</button>
</div>
</div>
</div>
</div>
<script src="options.js"></script>
</body>
</html>
|