forked from kdzwinel/DOMListenerExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanel.html
77 lines (72 loc) · 3.12 KB
/
panel.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="twitter:widgets:csp" content="on">
<title>DOMListener - DevTools panel page</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/panel.css">
</head>
<body>
<p class="status" title="Unable to contact content script. Try reloading the page.">(disconnected)</p>
<nav>
<button class="button-primary record">Record</button>
<button class="clear">Clear</button>
<button class="top hidden">Top</button>
</nav>
<main>
<table class="events u-full-width">
<thead>
<tr>
<th>
<div class="type-filters">
<div class="checkbox nodes-added" title="nodes added">
<input type="checkbox" id="nodes-added-filter" checked/>
<label for="nodes-added-filter"></label>
</div>
<div class="checkbox nodes-removed" title="nodes removed">
<input type="checkbox" id="nodes-removed-filter" checked/>
<label for="nodes-removed-filter"></label>
</div>
<div class="checkbox attribute-changed" title="attribute changed">
<input type="checkbox" id="attribute-changed-filter" checked/>
<label for="attribute-changed-filter"></label>
</div>
<div class="checkbox text-changed" title="text changed">
<input type="checkbox" id="text-changed-filter" checked/>
<label for="text-changed-filter"></label>
</div>
</div>
Event <span class="counter">(0)</span>
</th>
<th>
<input type="text" placeholder="filter" class="target-filter"/>
Target
</th>
<th>Details</th>
</tr>
</thead>
<tbody></tbody>
</table>
</main>
<aside class="intro">
<p>Click <em>"Record"</em> button below to start listening for DOM changes.</p>
<div class="social-buttons">
<iframe
src="http://ghbtns.com/github-btn.html?user=kdzwinel&repo=DOMListenerExtension&type=watch&count=true&size=small"
style="background-color: transparent; border: none; overflow:hidden" width="90" height="20"></iframe>
<a href="https://twitter.com/share" class="twitter-share-button"
data-url="https://chrome.google.com/webstore/detail/domlistener/jlfdgnlpibogjanomigieemaembjeolj"
data-text="DOMListener Chrome Extension - monitor, browse and filter all DOM changes with ease."
data-count="horizontal"> </a>
</div>
</aside>
<script src="js/ContentScriptProxy.js"></script>
<script src="js/EventTable.js"></script>
<script src="js/ScrollHelper.js"></script>
<script src="js/panel.js"></script>
<script src="https://platform.twitter.com/widgets.js"></script>
</body>
</html>