李岩岩 314d9d47f8 feat(M2.3): 沙拉图标组件(基础) (v0.1.3)
- 创建 src/content/components/SaladIcon.js
- 实现 24x24px 绿色图标组件
- 使用 Shadow DOM 封装样式
- position: fixed 定位
- 修复 Content Script 中 Custom Elements 兼容性问题
2026-02-10 13:39:30 +08:00

44 lines
914 B
JSON

{
"manifest_version": 3,
"name": "沙拉查词",
"version": "0.1.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"
}