-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdevtools_tab.html
More file actions
70 lines (58 loc) · 1.56 KB
/
Copy pathdevtools_tab.html
File metadata and controls
70 lines (58 loc) · 1.56 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
<html>
<head>
<link href="css/start/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="jquery.js"></script>
<script src="jquery-ui.js"></script>
<script src="beautify.js"></script>
<style>
body {
font-size: 10px;
font-family: Verdana,Arial,sans-serif;
margin: 0 0 0 0;
padding: 0 0 0 0;
overflow: hidden;
background-color: rgb(214, 221, 229);
}
#log-tab {
margin: 0 0 0 0;
padding: 0 0 0 0;
}
#registered-tab {
margin: 0 0 0 0;
padding: 0 0 0 0;
}
#start {
font-size: 18pt;
text-align: center;
width: 350px;
margin-top: 55px;
margin-right: auto;
margin-left: auto;
}
#start a {
color: blue;
text-shadow: 1px 1px gray;
text-decoration: none;
}
#start img {
vertical-align: middle;
}
</style>
</head>
<body>
<div id="tabs" style="display:none">
<ul>
<li><a href="#log-tab">Log</a></li>
<li><a href="#registered-tab">Registered</a></li>
</ul>
<div id="registered-tab">
</div>
<div id="log-tab">
</div>
</div>
<div id="start">
<img src="/icon48.png" />
<a href="#" id="start-btn">Start Event Spy</a>
</div>
</body>
</html>