-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoptions.html
More file actions
30 lines (29 loc) · 999 Bytes
/
options.html
File metadata and controls
30 lines (29 loc) · 999 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
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="options.css" />
</head>
<body>
<div id="project-container">
<label for="projects">Projects</label>
<textarea name="projects" id="projects"></textarea>
<p>
Add the machine of the all the projects you would like to use this
extension for.
</p>
</div>
<label for="load-pages">Load multiple pages(if 3 or less)</label
><input type="checkbox" id="load_pages" name="load_pages" />
<div id="status"></div>
<label for="auto_tags">Common tags</label>
<textarea name="auto_tags" id="auto_tags"></textarea>
<p>Add the common tags that you use.</p>
<label for="common_usernames">Common usernames</label>
<textarea name="common_usernames" id="common_usernames"></textarea>
<p>
Add usernames to always include in @mention autocomplete (one per line).
</p>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>