-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
36 lines (34 loc) · 931 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Clipboard Inspector</title>
<meta
name="description"
content="Explore the content of your clipboard"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body>
<h1>Clipboard Inspector</h1>
<p>
A tool to help you explore the kinds of data available when you
paste something on a web page, or
<a
href="https://developer.mozilla.org/en-US/docs/Web/API/Document/drop_event"
>drop</a
>
something onto it.
</p>
<div id="app">Loading the application...</div>
<footer>
A <a href="https://labs.moqups.com">Moqups Labs</a> thing.
<a href="http://github.com/evercoder/clipboard-inspector"
>Source code</a
>
available on GitHub.
</footer>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>