- 安装 npm 依赖 (Vue 3, Vite, @crxjs/vite-plugin) - 配置 vite.config.js 支持 Chrome Extension - 创建基础入口文件 (background, content, popup, options) - 配置构建输出到 dist/ 目录 - 添加占位图标文件
28 lines
595 B
HTML
28 lines
595 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>沙拉查词</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 16px;
|
|
width: 400px;
|
|
min-height: 300px;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
}
|
|
h1 {
|
|
margin: 0 0 16px 0;
|
|
font-size: 18px;
|
|
color: #333;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>沙拉查词</h1>
|
|
<p>Popup 页面占位</p>
|
|
<script type="module" src="./index.js"></script>
|
|
</body>
|
|
</html>
|