forked from better319/google-access-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
136 lines (123 loc) · 4.43 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<html xmlns="http://www.w3.org/1999/xhtml">
<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;
}
.header .logo-content {
float:left;
margin-left: 10px;
padding-top: 5px;
}
.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;
}
#settings:after {
display: inline-block;
content: " ";
width: 100%;
height: 100%;
background: no-repeat url("/img/settings.png") 4px 4px;
}
.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://mail.google.com/mail/">Gmail邮箱</a>,<a target="_blank" href="https://chrome.google.com/webstore/category/extensions?hl=zh-CN">Chrome商店</a>...</span>
</div>
</div>
<div style="margin-bottom: 15px;">
<span>应急操作:<a id="refreshP" href="#">刷新</a> <a id="restartP" href="#">重启</a> <a id="stopP" href="#">暂停</a><a id="startP" href="#">启动</a></span>
</div>
<div id="onStatus" style="display: none">
</div>
<div>
<span>如果还不能访问,可以试试刷新或者重启</span><br>
<span>如果要使用其他代理而不冲突,可以点击暂停</span>
</div>
<div id="offStatus" style="display: none">
<span id="tips"></span>
</div>
<span>
<e href="" id="openMainWebsite" data-i18n-content="popup_switchyWebPage">交流QQ群:176080917</e>
</span>
<br/>
<br/>
</div>
<div class="footer">
<div class="popup_copyright">
© 2018 <a target="_blank" href="http://www.ggfwzs.com/">谷歌访问助手</a>
</div>
<a id="settings" href="#"></a>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>