-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
51 lines (44 loc) · 1.09 KB
/
options.html
File metadata and controls
51 lines (44 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Gemini API設定</title>
<style>
body {
padding: 20px;
font-family: sans-serif;
min-width: 300px;
}
input {
width: 100%;
padding: 8px;
margin-bottom: 10px;
box-sizing: border-box;
}
button {
padding: 8px 16px;
cursor: pointer;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
}
button:hover {
background-color: #0056b3;
}
#status {
margin-top: 10px;
color: green;
font-size: 0.9em;
}
</style>
</head>
<body>
<h3>Gemini API Key設定</h3>
<p>Google AI StudioのAPIキーを入力してください。</p>
<input type="password" id="apiKey" placeholder="Enter your API Key">
<button type="button" id="save">保存</button>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>