feat: add extension implementation and docs

Add manifest.json, sidepanel components, and scripts.
Include project assets and documentation files.
Remove placeholder blank file.
This commit is contained in:
Kunthawat Greethong
2026-01-06 08:49:28 +07:00
parent 87dd2931fa
commit f490c63632
23 changed files with 4586 additions and 0 deletions

64
sidepanel/warning.html Normal file
View File

@@ -0,0 +1,64 @@
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Warning</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #1e1e1e;
color: #e0e0e0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
padding: 20px;
text-align: center;
}
.icon {
font-size: 48px;
margin-bottom: 20px;
}
h2 {
margin: 0 0 10px 0;
font-weight: 500;
color: #ff6b6b;
}
p {
font-size: 14px;
line-height: 1.5;
color: #b0b0b0;
}
.link {
margin-top: 20px;
padding: 10px 20px;
background-color: #4a90e2;
color: white;
text-decoration: none;
border-radius: 4px;
font-size: 14px;
transition: background-color 0.2s;
}
.link:hover {
background-color: #357abd;
}
</style>
</head>
<body>
<div class="icon">⚠️</div>
<h2>ใช้งานไม่ได้ในหน้านี้</h2>
<p>Extension นี้ใช้งานได้เฉพาะบน<br>gemini.google.com เท่านั้น</p>
<a href="https://gemini.google.com/" target="_blank" class="link">ไปที่ Gemini</a>
</body>
</html>