-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
35 lines (31 loc) · 1.1 KB
/
Copy pathpopup.html
File metadata and controls
35 lines (31 loc) · 1.1 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Resume</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<header>
<h1>Resume</h1>
<div class="actions">
<!-- Copy (icon) -->
<button id="copyBtn" class="icon-btn" title="Copy to clipboard" aria-label="Copy to clipboard">
<svg viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<rect x="9" y="9" width="10" height="10" rx="2" ry="2" fill="none" stroke="currentColor" stroke-width="2"></rect>
<rect x="5" y="5" width="10" height="10" rx="2" ry="2" fill="none" stroke="currentColor" stroke-width="2"></rect>
</svg>
</button>
<!-- Apply (text) -->
<button id="applyBtn" title="Apply this list to the current window">Apply</button>
</div>
</header>
<textarea id="urlList" spellcheck="false" aria-label="URLs in current window, one per line"></textarea>
<footer>
<small>
Edit the list (one URL per line), then press Apply to make this window match.
</small>
</footer>
<script type="module" src="popup.js"></script>
</body>
</html>