mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Some checks failed
Build Docker Images / Build docker images (push) Has been cancelled
Build Self-Hosting Docker Images / Build self-host docker images (push) Has been cancelled
Run tests / Run Codebase tests (push) Has been cancelled
Run tests / Build docker images (push) Has been cancelled
* 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>
36 lines
769 B
HTML
36 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>
|