Add manifest.json, sidepanel components, and scripts. Include project assets and documentation files. Remove placeholder blank file.
64 lines
1.7 KiB
HTML
64 lines
1.7 KiB
HTML
<!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> |