forked from jimschubert/NewTab-Redirect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
35 lines (35 loc) · 1.39 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
<html>
<head>
<title>New Tab Page | Options</title>
<script type="text/javascript" src="options.js"></script>
<link rel="stylesheet" href="options.css" type="text/css"/>
</head>
<body onload="ready()">
<div id="status">Options Saved.</div>
<div id="header"><h1>New Tab Page Options</h1></div>
<div class="section-header first"><em>Provide a url or file location here</em></div>
<p> <span class="desc-text">Location:<span> <input type="text" id="custom-url">
<br >
<input type="checkbox" id="hidetext" /> <small>Hide redirect text</small>
<br>
<span style="display:none;"><input type="checkbox" id="old" /> <small>Old redirect (address bar doesn't focus)</small></span>
<br>
<button id="save-button" style="font-weight:bold" onclick="save_options()">Save</button>
<button onclick="restore_options()">Cancel</button>
</p>
<em>Note: Use file:// for local files (e.g. file://C:\example.html)</em>
<p>Original Chrome pages:</p>
<ul id="chromes" class="horizontal-links"></ul>
<div class="fix"></div>
<p>Popular Pages:</p>
<ul id="abouts" class="links">
</ul>
<ul id="popular" class="links">
</ul>
<div class="fix"></div>
<div id="footer">
<em>Created by <a href="http://www.ipreferjim.com">James Schubert, 2009</a>. james.schubert@gmail.com</em><br />
<em>Want to contribute? <a href="http://code.google.com/p/newtabredirect/">Join me at Google Code!</a></em>
</div>
</body>
</html>