-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpopup.html
51 lines (50 loc) · 1.19 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
<html>
<head>
<style>
body {
width: 200px;
}
h1 {
font-size: 120%;
line-height: 120%;
}
#referer, #ua {
padding: 5px;
width: 100%;
font: 100% arial;
border: 1px solid #E5E5DB;
background: #FFF;
color: #47433F;
}
#ua_random_switch {
margin-left: 15px;
}
input {
margin: 7px 0 7px 0;
}
hr {
height:1px;
border:none;
border-top:1px dashed #0066CC;
}
input[type="checkbox"] {
vertical-align:middle;
}
label {
vertical-align:middle;
}
</style>
<script src="res/popup.js"></script>
</head>
<body>
<h1>1. Referer</h1>
<input id="referer_switch" type="checkbox"> <label id="referer_text"></label> </input>
<input id="referer" type="text" value="" placeholder=""></input>
<hr />
<h1>2. UserAgent</h1>
<input id="random_ua" type="checkbox"> <label id="ua_text"></label> </input>
<hr />
<h1>3. IP Address</h1>
<input id="random_ip" type="checkbox"> <label id="ip_text"></label> </input>
</body>
</html>