-
Notifications
You must be signed in to change notification settings - Fork 3
/
options.html
95 lines (84 loc) · 2.41 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE>
<!--
* Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
* source code is governed by a BSD-style license that can be found in the
* LICENSE file.
-->
<html>
<head>
<meta charset="utf-8" />
<title>Options for the Send as Email extension</title>
<style>
* {
margin: 0;
padding: 0;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
ul,
li {
list-style: none;
}
h1 {
font-size: 24px;
line-height: 2;
}
p {
font-size: 18px;
line-height: 1.8;
margin-bottom: 10px;
}
li {
font-size: 14px;
line-height: 1.5;
}
.intro {
width: 50%;
padding: 20px;
background: #f7f7f7;
/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15); */
margin-left: auto;
margin-right: auto;
margin-top: 20px;
}
div
</style>
</head>
<body>
<div class="intro">
<h1>安装后如何使用</h1>
<p>鼠标选择需要拷贝的内容(支持文本,链接,图片) -> 使用 Alt + C拷贝到剪切板</p>
<ul>
<li>
<b>不选择任何内容</b>: [文档标题](页面链接)
</li>
<li>
<b>选择文本链接</b>: [文本](文本链接)
</li>
<li>
<b>选择http链接</b>: [默认文本自行替换](文本链接)
</li>
<li>
<b>选择图片</b>: ![图片alt标记名称](图片链接)
</li>
</ul>
</div>
<div class="intro">
<h1>How to Work</h1>
<p>Use Mouse to Select Content(support text, link, img) -> Use Alt + C Copy to Clipboard</p>
<ul>
<li>
<b>Select Nothing</b>: [Document Title](Page Url)
</li>
<li>
<b>Select Link Text</b>: [Link Text](Link Url)
</li>
<li>
<b>Select Http Text</b>: [Default Text to Replace](Link Url)
</li>
<li>
<b>Select Img</b>: ![img Alt Name](img link)
</li>
</ul>
</div>
</body>
</html>