-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpopup.html
More file actions
41 lines (36 loc) · 732 Bytes
/
popup.html
File metadata and controls
41 lines (36 loc) · 732 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Mixpanel tools</title>
<style>
body {
min-width: 300px;
font-size: 12px;
padding: 10px 20px;
}
h2 {
font-size: 16px;
}
.header-list {
display: none;
}
ul {
color: blue;
}
</style>
</head>
<body>
<h2>Mixpanel tools</h2>
<p>
A debugger tool helps to intercept mixpanel events and display event
properties
</p>
<main id="main">
<div class="header-list" id="header-list">
List of API hosts configured before,
</div>
<ul id="prev-url-list"></ul>
</main>
<script src="popup.js" type="module"></script>
</body>
</html>