shellfox/options.html
Jaidyn Ann eb1b330ffc Add settings page, for defining commands
The settings aren’t used yet, but at least editing
is out of the way!
2024-02-28 11:00:42 -06:00

26 lines
516 B
HTML

<!DOCTYPE html>
<html>
<body>
<table id="commandTable">
<tr>
<th>URL regex</th>
<th>Shell command</th>
</tr>
<!-- <tr class="regexCommandRow">
<td>
<input type="text" class="regex" name="color"
placeholder="https://example.com/*"/>
</td>
<td>
<input type="text" class="command" name="color"
placeholder="curl %s > /tmp/example" />
</td>
</tr> -->
</table>
<button id="save">Apply</button>
<script src="options.js"></script>
</body>
</html>