forked from kangxi94/google-access-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
117 lines (105 loc) · 3.31 KB
/
popup.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<html>
<head>
<meta charset="UTF-8"/>
<title>谷歌访问助手</title>
<style type="text/css">
body {
margin: 0;
color: #345;
font-family: Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,\\5FAE\8F6F\96C5\9ED1,Arial,sans-serif;
font-size: 9pt;
}
body * {
white-space: nowrap;
}
#about {
font-size: 10pt;
padding: 10px 20px;
}
.header{
width: 290px;
height: 90px;
}
.header .logo{
float:left;
margin-bottom: 20px;
margin-left: 5px;
}
.header .logo-content {
float:left;
margin-left: 10px;
padding-top: 8px;
}
.header .title{
font-size:24px;
margin: 0px 5px;
}
.header .sub-title{
font-size:16px;
margin: 0px 5px;
}
#about a {
cursor: pointer;
text-decoration: blink;
color: #4285f4;
outline : none;
}
#about .footer {
height: 15px;
color: #789;
margin: 5px;
padding-top: 5px;
border-top: solid 1px #eef;
white-space: nowrap;
}
#about #tips{
color: red;
font-size: 16px;
display: block;
padding-bottom: 5px;
}
.popup_copyright{
text-align: center;
}
#settings{
display: inline-block;
width: 25px;
height: 25px;
float: right;
margin-top: -22px;
}
</style>
</head>
<body>
<div id="about">
<div class="header">
<div class="logo">
<img src="icons/icon-128.png" width="70"/>
</div>
<div class="logo-content">
<p class="title">谷歌访问助手</p>
<p class="sub-title">版本:<span id="versionNumber">2.3.0</span></p>
</div>
</div>
<div class="body">
<div id="developer">
<div class="name">
<span>谷歌:<a target="_blank" href="https://www.google.com.hk">谷歌搜索</a> <a target="_blank" href="https://chrome.google.com/webstore/category/extensions?hl=zh-CN">谷歌商店</a></span>
</div>
</div>
<div style="margin-bottom: 15px;">
</div>
<div id="onStatus" style="display: none">
</div>
<div id="offStatus" style="display: none">
<span id="tips"></span>
</div>
</div>
<div class="footer">
<div class="popup_copyright">
© 2018 晓东
</div>
</div>
</div>
</body>
</html>