blob: 47bd92f1fbde45a39e58f8bbd9de5d4e3550c3ba (
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
44
45
46
47
48
49
50
51
|
<!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; }
.form-element { margin: 1em 0; }
</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">
<div class="form-element">
Default button click behaviour:
<select id="button-click-behaviour">
<option value="window">Open Window</option>
<option value="download">Download File</option>
</select>
</div>
<div class="form-element">
File format:
<select id="file-format">
<option value="text">Text</option>
<option value="yaml">YAML</option>
<option value="html">HTML</option>
</select>
</div>
<div class="form-element">
<div id="status"></div>
<button id="save">Save</button>
</div>
</div>
</div>
</div>
</div>
<script src="options.js"></script>
</body>
</html>
|