-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
50 lines (46 loc) · 1.17 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>Options</title>
</head>
<body>
<h2>Open Github editor settings</h2>
Editor:
<select id="editor">
<option value="vscode">vscode</option>
<option value="vscode-insiders">vscode-insiders</option>
<option value="txmt">textmate</option>
</select>
<br />
<br />
<label for="localFolder">
Absolute path for the local repos folder like /Users/username/work/
<ul>
<li>
Should be a folder that contains your repos in folders matching the
repo name
</li>
<li>Repo folder names should match repo name on remote</li>
<li>Use full path without the ~ character</li>
<li>Add a trailing slash</li>
</ul>
</label>
<input
type="text"
id="localFolder"
style="min-width: 400px"
placeholder="/Users/username/work/"
/>
<div id="status"></div>
<br />
<br />
<button id="save">Save</button>
<br />
<h3>Whats new 🎉</h3>
<ul>
<li>Fix support for Bitbucket</li>
<li>Update to chrome manifest v3</li>
</ul>
<script src="options.js"></script>
</body>
</html>