-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
79 lines (66 loc) · 1.46 KB
/
popup.html
File metadata and controls
79 lines (66 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>AI Bookmarks Digest</title>
<style>
body {
font-family: sans-serif;
width: 300px;
padding: 10px;
}
textarea {
width: 100%;
height: 200px;
}
button {
margin-top: 5px;
/* Look nice */
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
cursor: pointer;
background-color: #f0f0f0;
}
button:hover {
background-color: #e0e0e0;
}
.button-container {
margin-top: 10px;
margin-bottom: 10px;
}
.folder-select {
margin: 10px 0;
max-height: 150px;
overflow-y: auto;
}
.folder-select label {
display: block;
margin: 5px 0;
}
.folder-select input[type="checkbox"] {
margin-right: 5px;
}
</style>
</head>
<body>
<h3 id="title">AI Bookmarks Digest</h3>
<div class="folder-select" id="folderSelect">
<div id="folderList"></div>
</div>
<div class="button-container">
<button id="generate">Generate Simple Digest</button>
<br />
<button id="fetchMeta">Fetch Meta Descriptions (batches of 5)</button>
<button id="stop">Stop Fetching...</button>
<br/>
<button id="copy">Copy to Clipboard</button>
<button id="clear">Clear</button>
<br />
</div>
<!-- Label -->
<label for="digest">Output Digest: </label>
<textarea id="digest"></textarea>
<script src="popup.js"></script>
<p id="status"></p>
</body>
</html>