-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
49 lines (43 loc) · 1.01 KB
/
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
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>PasteHuman</title>
<link rel="stylesheet" type="text/css">
<style>
body {
background-color: #EFEAE4;
color: #000000;
padding: 15px;
width: 300px;
}
.logo {
width: 300px;
display: block;
margin: 0 auto 20px;
}
h1,
button {
text-align: center;
width: 100%;
}
button {
background-color: #000000;
border: none;
color: #ffffff;
padding: 15px 32px;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px auto;
cursor: pointer;
}
</style>
</head>
<body>
<img src="PasteHuman_Logo.jpg" alt="Logo" class="logo">
<p>Right click on a textbox and select "Emulate typing" to paste clipboard contents as if typing.</p>
<p>Alternatively, you can click the "Start typing" button and then click on the textbox within 5 seconds.</p>
<button id="startTyping">Start typing</button>
<script src="popup.js"></script>
</body>
</html>