-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
26 lines (25 loc) · 727 Bytes
/
Copy pathpopup.html
File metadata and controls
26 lines (25 loc) · 727 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>ShortcutPilot 🚀</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h2>ShortcutPilot </h2>
<label>Shortcut 1 URL:</label>
<input type="text" id="url1" placeholder="https://google.com" />
<br />
<label>Shortcut 2 URL:</label>
<input type="text" id="url2" placeholder="https://github.com" />
<br />
<label>Shortcut 3 URL:</label>
<input type="text" id="url3" placeholder="https://instagram.com" />
<br />
<label>Shortcut 4 URL:</label>
<input type="text" id="url4" placeholder="https://leetcode.com" />
<br />
<button id="save">Save </button>
<p>Use Alt+Shift+1, 2,3 or 4 to launch</p>
<script src="popup.js"></script>
</body>
</html>