-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
37 lines (37 loc) · 2.01 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
36
37
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/html">
<head>
<title>Sidebar for Chrome Options</title>
<link rel="stylesheet" type="text/css" href="css/ui-lightness/jquery-ui-1.10.0.custom.css" >
<script src="js/jquery-1.9.0.js"></script>
<script src="js/jquery-ui-1.10.0.custom.js"></script>
<script src="js/sidebar.js"></script>
<script src="js/options.js"></script>
<link rel="stylesheet" type="text/css" href="css/widgets.css" />
</head>
<body style="margin-top: 100px; margin-left: 100px; font-family: 'Lucida Grande', sans-serif; font-size: 100%;" class=>
<a href="https://github.com/mneubrand/chrome-sidebar" target="_blank"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>
<h1>Sidebar for Chrome Options</h1>
<div style="color: red" id="status"></div>
<form>
<table style="border-spacing: 20px">
<!--<tr>
<td><label for="contextMenu">Add options to the context menu:</label></td>
<td><input type="checkbox" id="contextMenu" /></td>
</tr>-->
<tr>
<td><label for="homePage">Default URL:</label></td>
<td><input type="text" id="homePage" size="50"/></td>
</tr>
</table>
<p>There are many sites which work great in a sidebar.</p>
<p>Personally I use it for Google Tasks:</p>
<ul>
<li style="margin-bottom: 10px"><!--a href="#" id="tasksLink"-->Google Tasks<!--/a--><button style="margin-left: 10px" id="tasksButton">Set as Default URL</button></li>
</ul>
</form>
<button id="save" style="margin-top: 10px">Save</button>
<p>Please note that not every page can be embedded this way (e.g. Facebook or Google+ can't).</p>
<p>To report issues, feature requests, ask questions or to give feedback use <a href="https://github.com/mneubrand/chrome-sidebar/issues/new">Github Issues</a></p>
</body>
</html>