aboutsummaryrefslogtreecommitdiff
path: root/chrome/settings.html
blob: cdf20fab96b023dac8f8edf76f64e5463c36cae1 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
	<head>
		<title>Redirector Extension Settings</title>
		<style type="text/css">
			body { font-family: Helvetica, Georgia, Arial, sans-serif; }
			h1 { text-align:center; }
			label { display:table-cell; }
			input { display:table-cell; }
			#redirect-form div { display:table-row; }
			#redirect-form { display:none; }
		</style>
		<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
		<script type="text/javascript" src="js/settings.js"></script>
	</head>
	<body>
		<h1>Redirector</h1>
		<nav>
			<a href="">Redirects</a>
			<a href="">Preferences</a>
			<a href="">Help</a>
		</nav>
		<div id="redirect-list">
			<div>
				Redirect asdfasdfasdfasdfasdf to �lasdtasdasdt
				Example: hsdtasdt st to 
			</div>
		</div>
		<div id="crud">
			<button>Add</button>
			<button>Edit</button>
			<button>Delete</button>
			<button>Move Up</button>
			<button>Move Down</button>
			<button id="import">Import</button>
			<button id="export">Export</button>
		</div>
		<div id="config">
			<input type="checkbox" id="enable-redirector" data-pref="enabled" /> Enable Redirector
			<input type="checkbox" id="show-status-bar-icon" data-pref="showStatusBarIcon"/> Show status bar icon
			<input type="checkbox" id="show-context-menu" data-pref="showContextMenu"/> Show context menu
			<input type="checkbox" id="enable-debug-output" data-pref="debugEnabled"/> Enable debug output
		</div>
		<div id="redirect-form">
			<div>
				<label>Description</label>
				<input type="text" value="foo"/>
			</div>
			<div>
				<label>Example URL</label>
				<input type="text" value="foo"/>
			</div>
			<div>
				<label>Include Pattern</label>
				<input type="text" value="foo"/>
			</div>
			<div>
				<label>Exclude Pattern</label>
				<input type="text" value="foo"/>
			</div>
			<div>
				<label>Redirect To</label>
				<input type="text" value="foo"/>
			</div>
			<div>
				<label>Pattern Type</label>
				<input type="radio" /> Regular Expression
				<input type="radio" /> Wildcard
			</div>
			<div>
				<label>Unescape matches</label>
				<input type="checkbox"/>
			</div>
			<div>
				<label>Enabled</label>
				<input type="checkbox" />
			</div>
		</div>
	</body>
</html>