李岩岩 5e7bde1879 feat(M1.4): 模块间通信工具 (v0.0.4)
- 创建 src/shared/messaging.js 通信工具类
- 实现 MessageClient.sendToBackground() 方法
- 实现 BackgroundHandler.sendToContent() 方法
- 提供 ping/pong 测试验证通信链路
- 修复异步响应处理机制
2026-02-10 09:53:26 +08:00

44 lines
914 B
JSON

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