-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
44 lines (44 loc) · 972 Bytes
/
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
<html>
<head>
<style>
body {
overflow: hidden;
margin: 1px;
padding: 0px;
background: white;
}
#main {
cursor: pointer;
padding: 1px 3px;
font-family: sans-serif;
font-size: 0.8em;
width: 143px;
margin-top: 1px;
}
a:link{text-decoration: none}
a:visited{text-decoration: none}
a:active{text-decoration: none}
a:hover{text-decoration: underline}
a{color: #0776A0;margin-top:10px}
</style>
<script type="text/javascript" src="jquery-1.4.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<div id="main">
<a id="site" href="#">Loading...</a>
<br id="xable"/>
<a id="download" href="#">Update cache</a>
<br/>
<a id="privacy" href="#">Loading...</a>
<br/>
<a id="javascript" href="#">Loading...</a>
<br/>
<a id="faq" href="#">For more info, click here</a>
<br/>
<em><a id="donate" href="#">Please donate if you can</a></em>
<br/>
<div id="result"></div>
</div>
</body>
</html>