-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
89 lines (71 loc) · 2.62 KB
/
help.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
<html>
<head>
<meta charset="UTF-8">
<style>
body {
/*height: 530px;*/
width: 280px;
outline: none;
}
input {
width:250px;
height:30px;
}
.mainbody {
/*height:450px;*/
/*border: solid #eee;*/
/*border-width:1px 0;*/
}
.header {
height: 60px;
padding: 5px;
}
/*
.footer {
height: 60px;
padding:5px;
position: absolute;
bottom: 0;
}*/
a:link{
color:blueviolet;
}
a:visited{
color:blueviolet;
}
#resultDiv {
height: 150px;
overflow-y: scroll;
}
#bigtitle {
font-size: xx-large;
font-family: cursive;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<span id="bigtitle"><a href="index.html">Back</a></span>
</div>
<div class="mainbody">
<span style="color:blueviolet">- How to use</span>
<ul>
<li>You can press "Ctrl+Shift+F" to open this extension.</li>
<li>Select a word on web ,then just press "Ctrl+Shift+F" to translate the word between English and Chinese.</li>
<li>Type a word in the input field and press Enter key.</li>
<li>In the new word list field, click the word to translate, click remove link when you memorize it.</li>
</ul>
<br>
<span style="color:blueviolet">- About Translated</span>
<ul>
<li>Version: v0.1</li>
<li>A chrome exetension to help translate between English and Chinese.It aim to provide friendly UI and try to keep dead easy.</li>
<li>The translate engin is powered by <a href="https://cn.bing.com/dict" target="_blank">微软必应词典</a>.</li>
<li>Developed by [email protected] and the code can be found on <a target="_blank" href="https://github.com/forestery/translated">github</a>.</li>
</ul>
<br>
</div>
</div>
</body>
</html>