aboutsummaryrefslogtreecommitdiffstats
path: root/options.html
blob: 515e61d2f2f075ceced9c7194fd4c326609a7d6b (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
52
53
54
55
56
57
58
<!doctype html>
<html>
<head>
	<meta charset="utf-8">
	<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">
						Filename prefix:
						<input type="text" id="filename-prefix" />
						(Default: “chrome-tabs-”)
					</div>
					
					<div class="form-element">
						<button id="save">Save</button>
						<span id="status"></span>
					</div>
				</div>
			</div>
		</div>
	</div>
	
	<script src="options.js"></script>
</body>
</html>