* Initial prototype of the V3 manifest extension * Make sure the content script is only injected once * Implement addNote button * More separation work for tasks, implement archive and update note * Add back missing functionality, add guide to install Extensions * Revert v2 changes --------- Co-authored-by: Thomas Rogers <Podginator@gmail.com>
37 lines
769 B
HTML
37 lines
769 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Omnivore Extension Settings</title>
|
|
|
|
</head>
|
|
<body>
|
|
<div class='wrapper'>
|
|
<h1>API Key</h1>
|
|
|
|
<label for="api-key">API Key:</label>
|
|
|
|
<input type="text" id="api-key" style="width: 95%">
|
|
|
|
<br><br>
|
|
|
|
<button id="save-api-key-btn">Save API Key</button>
|
|
|
|
|
|
<h1>API URL</h1>
|
|
|
|
<label for="api-url">API URL:</label>
|
|
<input type="text" id="api-url" style="width: 95%">
|
|
<br><br>
|
|
<button id="save-api-url-btn">Save API URL</button>
|
|
|
|
<h1>OMNIVORE URL</h1>
|
|
|
|
<label for="omnivore-url">API URL:</label>
|
|
<input type="text" id="omnivore-url" style="width: 95%">
|
|
<br><br>
|
|
<button id="save-omnivore-url-btn">Save Omnivore URL</button>
|
|
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|