-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
89 lines (79 loc) · 2.79 KB
/
Copy pathoptions.html
File metadata and controls
89 lines (79 loc) · 2.79 KB
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
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>Bookmark HTMLizer / 书签HTML检索</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self';object-src 'self';script-src-elem 'self' 'unsafe-inline' https://platform.twitter.com https://syndication.twitter.com;">
<link rel="stylesheet" href="css/chrome_shared.css" />
<style>
body>.main-container {
max-width: 800px;
margin: 50px auto
}
header {
margin: 0 auto 50px auto;
font-size: 36px
}
#status {
color: green;
}
</style>
</head>
<body>
<div class="main-container">
<header>
Bookmark HTMLizer / 书签HTML检索
</header>
<h1>Opening Behavior / 打开方式</h1>
<hr />
<div class="radio">
<div>
<input id="mode-0" type="radio" name="mode" value="0">
<label for="mode-0">Popup / 悬浮</label>
</div>
</div>
<div class="radio">
<div>
<input id="mode-1" type="radio" name="mode" value="1">
<label for="mode-1">New tab / 新标签页</label>
</div>
</div>
<h1>Set shortcut keys / 设置快捷键</h1>
<hr />
<div>
点击配置激活Bookmark HTMLizer快捷键:<a href="#" id="setShortcuts">点击设置(当前快捷键:Alt+R)</a>
<div class="x-tips" style="color: #aaa;margin-top:4px">
Tips:使用<b>快捷键</b>,便捷打开Bookmark HTMLizer工具!
</div>
</div>
<br />
<div>
<div>内置快捷键1:<strong>Alt+R</strong> 使用设置的打开方式激活插件</div>
<div>内置快捷键2:<strong>Alt+T</strong> 可以快速在新窗口打开标签页</div>
</div>
<hr />
<!-- <br />
<br />
<hr />
<br />
<button style="font-size:16px;" id="btnReset">Reset / 重置设置</button> -->
<br />
<div>If you like this extension, please share it with people who may find it useful.</div>
<div>如果你喜欢这个插件的话,分享给有需要的人吧。</div>
<br />
<h1>AbountMe / 关于我</h1>
<hr />
<p>
Twitter: <a href="https://twitter.com/tiingou" target="_blank">tiing</a>
</p>
<p>
Github: <a href="https://github.com/stilesTech" target="_blank">stilesTech</a>
</p>
<p>
Blog: <a href="https://stiles.cc" target="_blank">stiles.cc</a>
</p>
<div id="status"></div>
</div>
<script src="options.js"></script>
</body>
</html>