-
Notifications
You must be signed in to change notification settings - Fork 9
/
options.html
34 lines (30 loc) · 993 Bytes
/
options.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
<!DOCTYPE html>
<html>
<head><title>Ducky Options</title></head>
<body>
Shortcuts :
<div id="shortcuts">
<input id="firstUrl" type="url" placeholder="1. Shortcut"></input>
<input id="firstUrlIcon" type="url" placeholder="1. Shortcut icon 64x64"></input>
<br>
<input id="secondUrl" type="url" placeholder="2. Shortcut"></input>
<input id="secondUrlIcon" type="url" placeholder="2. Shortcut icon 64x64"></input>
<br>
<input id="thirdUrl" type="url" placeholder="3. Shortcut"></input>
<input id="thirdUrlIcon" type="url" placeholder="3. Shortcut icon 64x64"></input>
<br>
<input id="fourthUrl" type="url" placeholder="4. Shortcut"></input>
<input id="fourthUrlIcon" type="url" placeholder="4. Shortcut icon 64x64"></input>
<br>
</div>
<label>
<input type="checkbox" id="searchResultTarget">
Open Google Search results in the Popup
</label>
<br>
<div id="status"></div>
<button id="save">Save</button>
<button id="restore">Reload</button>
<script src="options.js"></script>
</body>
</html>