-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoptions-ff.html
55 lines (54 loc) · 1.27 KB
/
options-ff.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
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Clone in VS Code Options</title>
<style>
div {
margin-top: 10px;
margin-left: 5px;
}
p {
margin-top: 3px;
margin-left: 5px;
}
body {
height: 100%;
overflow-y: hidden;
font-family: Arial, sans-serif;
}
#url-container {
display: none;
}
</style>
</head>
<body>
<div>
Protocol:
<select id="protocol">
<option value="HTTPS">HTTPS</option>
<option value="SSH">SSH</option>
</select>
</div>
<div>
Open in:
<select id="application">
<option value="VS Code">VS Code</option>
<option value="VS Code Insiders">VS Code Insiders</option>
<option value="VSCodium">VSCodium</option>
<option value="VSCodium Insiders">VSCodium Insiders</option>
<option value="Cursor">Cursor</option>
<option value="Windsurf">Windsurf</option>
<option value="Other">Other</option>
</select>
</div>
<div id="url-container">
URL Scheme:
<input type="text" id="url-scheme" />
</div>
<div>
<button id="save">Save</button>
</div>
<p id="status"></p>
<script src="options.js"></script>
</body>
</html>