-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpopup.html
More file actions
113 lines (91 loc) · 2.33 KB
/
popup.html
File metadata and controls
113 lines (91 loc) · 2.33 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!doctype html>
<html>
<head>
<title>crossRequest</title>
<meta charset="utf8" />
<style>
* {
margin: 8px;
}
a {
text-decoration: none
}
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
.main {
width: 320px;
}
.content {
line-height: 25px;
min-height: 100px;
}
.add {
line-height: 40px;
margin-bottom: 20px;
}
.add input {
width: 200px;
line-height: 25px;
}
.add button {
width: 70px;
line-height: 25px;
}
.url {
min-width: 200px;
display: inline-block
}
.del {
cursor: pointer
}
.button {
background-color: #4CAF50;
/* Green */
border: none;
color: white;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
margin: 8px 16px;
cursor: pointer;
}
.button1 {
border-radius: 8px;
}
.textarea {
width: 100%;
/*自动适应父布局宽度*/
height: 100%;
overflow: auto;
word-break: break-all;
}
</style>
</head>
<body>
<div class="main">
<p>该扩展仅支持 GTest 接口管理平台.</p>
<p>If you need Help, <a href="" target="_blank">follow the page.</a></p>
<br>
<!-- <div class="content" id="urls">
</div> -->
</div>
<div>
<span id="text"></span>
</div>
<button id="clear" class="button button1">清除代理</button>
<button id="get" class="button button1">代理详情</button>
<div>
<textarea id="content" class="textarea" rows="10"></textarea>
</div>
<!-- <div class="add" id="add">
<input />
<button class="submit">Add Host</button>
</div> -->
<script src="jquery-3.1.1.js"></script>
<script src="popup.js"></script>
</body>
</html>