export-bookmarks/popup.html

26 lines
566 B
HTML

<!doctype html>
<html lang="en" style="min-width:500px">
<head>
<meta charset="utf-8">
<title>Export bookmarks</title>
</head>
<body>
<h1>Export bookmarks</h1>
<label for="select">Bookmark folder: </label><br>
<select id='select' style="margin:5px 0"></select><br>
<br>
<input type="checkbox" id="delete">Delete after export</input><br>
<input type="checkbox" id="includeNames">Include names</input><br>
<br>
<button id="exportButton">Export</button>
<script src="FileSaver.js"></script>
<script src="popup.js"></script>
</html>