-
Notifications
You must be signed in to change notification settings - Fork 28
/
options.html
70 lines (61 loc) · 2.14 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
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
<html>
<head>
<title>URL Alias</title>
</head>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="options.js"></script>
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.4/material.indigo-pink.min.css">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.4/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
body {
color: #303942; background-color: #3F51B5;
}
.content {
border-radius: 2px;
padding: 40px 56px;
margin-bottom: 80px;
}
#entries {
margin-top: 50px;
margin-bottom: 30px;
max-width: 500px;
}
#entries td {
text-align: center;
}
#entries td input {
width: 80%;
}
#status {
margin-left: 30px;
}
</style>
<body>
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--3-col mdl-cell--hide-tablet mdl-cell--hide-phone"></div>
<div class="mdl-color--white mdl-shadow--4dp content mdl-color-text--grey-800 mdl-cell mdl-cell--6-col">
<h1>URL Alias - Options</h1>
Please send all feedback to <a href="mailto:[email protected]">[email protected]</a> or use <a href="https://github.com/karan/chrome-url-alias/issues">the issue tracker</a>.
<h2>Aliases</h3>
<b>Syntax</b>
<ul>
<li>Strict alias: <i>m</i> (Alias) -> <i>https://mail.google.com</i> (Redirect)</li>
<li>Dynamic alias: Use <i>###</i> to set dynamic aliases. <i>r/###</i> (Alias) -> <i>http://reddit.com/r/###</i> (Redirect)</li>
</ul>
<table id="entries">
<thead>
<tr>
<th width="30%">Alias</th>
<th width="60%">Redirect to</th>
<th width="10%">Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
<button id="newEntry" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored">Add New Entry</button>
<button id="save" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored">Save Changes</button><span id="status"></span>
</div>
</div>
</body>
</html>