2019-07-19 20:35:53 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
|
|
<meta content="utf-8" http-equiv="encoding">
|
|
|
|
<link rel="stylesheet" href="popup.css"/>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div style="display: flex; justify-content: space-between; vertical-align: middle;">
|
|
|
|
<h3>Trilium Web Clipper</h3>
|
2023-06-21 13:13:28 +02:00
|
|
|
|
2019-07-19 20:35:53 +02:00
|
|
|
|
|
|
|
<div style="position: relative; top: 6px;">
|
|
|
|
<button class="button" id="show-options-button">Options</button>
|
|
|
|
|
|
|
|
<button class="button" id="show-help-button">Help</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-21 13:13:28 +02:00
|
|
|
<div id="already-visited"></div>
|
2019-07-19 20:35:53 +02:00
|
|
|
|
2022-02-19 19:38:01 +01:00
|
|
|
<button class="button full needs-connection" id="save-cropped-screenshot-button">Crop screen shot</button>
|
|
|
|
<button class="button full needs-connection" id="save-whole-screenshot-button">Save whole screen shot</button>
|
2019-07-19 20:35:53 +02:00
|
|
|
<button class="button full needs-connection" id="save-whole-page-button">Save whole page</button>
|
2021-03-31 22:23:43 +02:00
|
|
|
<button class="button full needs-connection" id="save-link-with-note-button">Save link with a note</button>
|
2021-02-22 01:40:07 +06:00
|
|
|
<button class="button full needs-connection" id="save-tabs-button">Save window's tabs as a list</button>
|
2019-07-19 20:35:53 +02:00
|
|
|
|
2021-03-31 22:23:43 +02:00
|
|
|
<div id="save-link-with-note-wrapper">
|
|
|
|
<textarea id="save-link-with-note-textarea" rows="5"></textarea>
|
2019-07-19 20:35:53 +02:00
|
|
|
|
2023-06-19 00:02:19 +02:00
|
|
|
<div>
|
|
|
|
<input type="checkbox" id="keep-title-checkbox" name="keep-title-checkbox" value="Bike">
|
|
|
|
<label for="keep-title-checkbox">Keep page title as note title</label><br>
|
|
|
|
</div>
|
2019-07-19 20:35:53 +02:00
|
|
|
<div style="display: flex;">
|
|
|
|
<button type="submit" class="button wide" id="save-button">Save</button>
|
|
|
|
|
|
|
|
<button type="submit" class="button wide" id="cancel-button">Cancel</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="margin-top: 15px;">
|
|
|
|
<button class="button" id="check-connection-button">check</button>
|
|
|
|
|
|
|
|
<div>Status: <span id="connection-status">unknown</span></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="../lib/browser-polyfill.js"></script>
|
|
|
|
<script src="../lib/cash.min.js"></script>
|
|
|
|
<script src="popup.js"></script>
|
2021-03-31 22:23:43 +02:00
|
|
|
<script src="../utils.js"></script>
|
2023-06-21 13:13:28 +02:00
|
|
|
<script src="../content.js"></script>
|
2019-07-19 20:35:53 +02:00
|
|
|
</body>
|
|
|
|
|
2021-03-31 22:23:43 +02:00
|
|
|
</html>
|