-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
51 lines (44 loc) · 1.61 KB
/
settings.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
50
51
<!doctype html>
<html>
<head>
<title>URL Jumper settings</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="shared.css">
<link rel="stylesheet" href="settings.css">
<script src="shared.js" defer></script>
<script src="settings.js" defer></script>
</head>
<body>
<a href="popup.html" class="arrow-button">
<img src="imgs/iconmonstr-arrow-left.svg" alt="Back" class="icon">
</a>
<div>
<div style="display: flex; justify-content: space-between; align-items: center;">
<h3 style="margin: 0;">URL Jumper Instructions</h3>
<button id="toggle-color-scheme">Toggle color scheme</button>
</div>
</div>
<li>Add/edit/delete your mappings in the textbox below and save.</li>
<li>Use the format <code>name URL</code> for each entry.</li>
<li>Open the extension popup and enter the name to jump to its URL.</li>
<li id="last-instruction">By default, Alt+N and Alt+M open the extension for jumping on the same tab and onto a new tab, respectively.</li>
<div id="message"></div>
<textarea
cols="80"
rows="18"
placeholder=
"Enter name URL pairs here. Examples:
search https://www.google.com/ \ You can write comments using a backslash
finance https://ca.finance.yahoo.com/
shopping amazon.com
bank https://www.rbcroyalbank.com/personal.html
"
></textarea>
<br/>
<div id="button-footer">
<button id="submit">Save Changes</button>
<button id="copy-url">Copy Current URL</button>
</div>
</body>
</html>