-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpopup.html
More file actions
41 lines (41 loc) · 1.23 KB
/
popup.html
File metadata and controls
41 lines (41 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>Clipboard to File Input</title>
<link rel="stylesheet" type="text/css" href="css/popup.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
</head>
<body>
<div class="container">
<div class="header">
<h1>Clipboard to File Input</h1>
<a
href="https://github.com/GooglyBlox/ClipboardToFileInput"
target="_blank"
title="View on GitHub"
aria-label="View on GitHub"
>
<i class="fab fa-github"></i>
</a>
</div>
<div class="content">
<p>Click on a file input field to paste your clipboard content.</p>
<button id="clearPreferences">Clear Preferences</button>
</div>
<div class="footer">
<p>
Made with <i class="fas fa-heart"></i> by
<a href="https://github.com/GooglyBlox" target="_blank">GooglyBlox</a>
</p>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>