dropdown-copy-helper/popup.html

155 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
width: 300px;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.title {
font-size: 18px;
font-weight: bold;
color: #1a73e8;
margin-bottom: 5px;
}
.subtitle {
font-size: 14px;
color: #666;
}
.content {
margin-bottom: 20px;
}
.feature {
display: flex;
align-items: center;
margin-bottom: 12px;
padding: 8px;
background: #f8f9fa;
border-radius: 6px;
}
.feature-icon {
width: 20px;
height: 20px;
margin-right: 10px;
background: #1a73e8;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 12px;
}
.feature-text {
font-size: 13px;
color: #333;
}
.supported-sites {
margin-top: 15px;
}
.sites-title {
font-size: 14px;
font-weight: 600;
color: #333;
margin-bottom: 8px;
}
.site {
display: flex;
align-items: center;
margin-bottom: 6px;
font-size: 13px;
color: #666;
}
.site-dot {
width: 6px;
height: 6px;
background: #34a853;
border-radius: 50%;
margin-right: 8px;
}
.usage {
background: #e8f0fe;
padding: 12px;
border-radius: 6px;
margin-top: 15px;
}
.usage-title {
font-size: 13px;
font-weight: 600;
color: #1a73e8;
margin-bottom: 6px;
}
.usage-text {
font-size: 12px;
color: #333;
line-height: 1.4;
}
</style>
</head>
<body>
<div class="header">
<div class="title">Dropdown Copy Helper</div>
<div class="subtitle">下拉复制助手</div>
</div>
<div class="content">
<div class="feature">
<div class="feature-icon">📋</div>
<div class="feature-text">Right-click input fields to copy dropdown items</div>
</div>
<div class="feature">
<div class="feature-icon">🔍</div>
<div class="feature-text">Automatically detects dropdown suggestions</div>
</div>
<div class="feature">
<div class="feature-icon">📢</div>
<div class="feature-text">Shows toast notifications for copy status</div>
</div>
<div class="supported-sites">
<div class="sites-title">Supported Sites / 支持的网站:</div>
<div class="site">
<div class="site-dot"></div>
Google Search
</div>
<div class="site">
<div class="site-dot"></div>
YouTube
</div>
</div>
<div class="usage">
<div class="usage-title">How to use / 使用方法:</div>
<div class="usage-text">
1. Visit a supported website<br>
2. Click on a search input field<br>
3. Right-click and select "Copy All Dropdown Items"<br>
4. All suggestions will be copied to clipboard
</div>
</div>
</div>
</body>
</html>