-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
38 lines (28 loc) · 1020 Bytes
/
popup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI file downloader</title>
<script src="build/pdf.min.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<div class="tabs">
<div class="tab" id="suggestedTab">Suggested Filename</div>
<div class="tab active" id="defaultTab">Default Filename</div>
</div>
<div class="input-container">
<input type="text" id="content" style="display: none;" />
<div class="loading-icon" id="loading-icon"></div>
</div>
<div id="error-message">An error occurred. Please try again.</div>
<button id="saveButton">Save</button>
<div style="margin-top: 10px; font-size: 12px; color: #888;">
Powered by <strong>Gemini Nano</strong>
</div>
</div>
</body>
</html>