-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
81 lines (76 loc) · 1.98 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
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>LinksJunkie Setting</title>
<script src="options.js"></script>
<script src="common.js"></script>
<style> body: { padding: 10px; } </style>
</head>
<body>
<h1>Formats</h1>
<div class="contents-background">
<table id="shortcutsTable">
<thead>
<tr>
<th>Enable</th>
<th>Name</th>
<th>Format</th>
<th>Copy</th>
<th>Delete</th>
<th>Move</th>
</tr>
</thead>
<tbody id="shortcutsTableBody" />
</table>
<button id="reset">Reset to Default</button>
<button id="save">Save</button><div id="status"></div>
</div>
<h2>Basic</h2>
<div class="contents-background">
<dl id="dl-variables" class="variables">
<dt>%text%</dt>
<dd>Page title or selected text.</dd>
<dt>%title%</dt>
<dd>Page title.</dd>
<dt>%url%</dt>
<dd>Page URL.</dd>
<dt>%isgd%</dt>
<dd>Shorten URL, from http://is.gd .</dd>
<dt>%wikiname%</dt>
<dd>URL to WikiName. <br>"http://en.wikipedia.org/wiki/Main_Page" to "Main_Page"</dd>
</dl>
</div>
<h2>Special</h2>
<div class="contents-background">
<dl id="dl-variables" class="variables">
<dt>\n</dt>
<dd>Enter.</dd>
<dt>\t</dt>
<dd>Tab.</dd>
</dl>
</div>
<h2>Date & Time</h2>
<div class="contents-background">
<dl id="dl-variables" class="variables">
<dt>%date%</dt>
<dd>2011/03/04</dd>
<dt>%Date%</dt>
<dd>2011-03-04</dd>
<dt>%datetime%</dt>
<dd>2011/03/04 05:06</dd>
<dt>%DateTime%</dt>
<dd>2011-03-04 05:06</dd>
<dt>%year%</dt>
<dd>2011</dd>
<dt>%month%</dt>
<dd>03</dd>
<dt>%day%</dt>
<dd>04</dd>
<dt>%hour%</dt>
<dd>05</dd>
<dt>%min%</dt>
<dd>06</dd>
</dl>
</div>
</body>
</html>