- 安装 npm 依赖 (Vue 3, Vite, @crxjs/vite-plugin) - 配置 vite.config.js 支持 Chrome Extension - 创建基础入口文件 (background, content, popup, options) - 配置构建输出到 dist/ 目录 - 添加占位图标文件
44 lines
914 B
JSON
44 lines
914 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "沙拉查词",
|
|
"version": "0.0.3",
|
|
"description": "聚合词典划词翻译",
|
|
"permissions": [
|
|
"storage",
|
|
"contextMenus",
|
|
"clipboardWrite"
|
|
],
|
|
"optional_permissions": [
|
|
"clipboardRead"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "src/background/index.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["src/content/index.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "src/popup/index.html",
|
|
"default_title": "沙拉查词",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"options_page": "src/options/index.html"
|
|
}
|