-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
34 lines (30 loc) · 1.08 KB
/
popup.html
File metadata and controls
34 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ripify Settings</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<header class="header">
<img src="icons/icon48.png" alt="Ripify Logo" class="logo-icon">
<h1 class="title">Ripify Settings</h1>
<p class="subtitle">Configure your download preferences.</p>
</header>
<main class="content">
<h3 class="card-title">AI-Powered Matching (Optional)</h3>
<p class="card-description">
If the standard search didn't return the correct result, AI can help find the right track with a smarter analysis. This requires a free API key from <a href="https://aistudio.google.com/apikey" target="_blank">Google AI Studio</a>.
</p>
<div class="api-key-container">
<input type="password" id="gemini-api-input" class="input-field" placeholder="Enter your Gemini API Key">
</div>
</main>
<footer class="footer">
<div id="status-message"></div>
</footer>
</div>
<script src="popup.js"></script>
</body>
</html>