Files
web-context-extension/manifest.json
hubian 7f7c13bf7f 初始化网页助手浏览器插件
功能:
- 右键菜单扩展(收藏、总结、深度研究)
- 智能页面内容提取(文本+图片)
- 收藏管理界面
- AI总结与深度研究
- 支持自定义API配置(OpenAI/Ollama)

技术:
- Chrome Extension Manifest V3
- Service Worker后台脚本
- Content Script内容提取
- 智能文章主体识别
- 本地Storage收藏存储

图标已生成,可替换为更好设计
2026-04-08 10:54:50 +08:00

62 lines
1.3 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"manifest_version": 3,
"name": "网页助手 - 收藏、总结、深度研究",
"name__zh_CN": "网页助手",
"version": "0.1.0",
"description": "右键菜单扩展快速收藏网页、AI总结、深度研究分析",
"description__zh_CN": "右键菜单扩展快速收藏网页、AI总结、深度研究分析",
"permissions": [
"contextMenus",
"activeTab",
"storage",
"tabs",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_title": "网页助手"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content.js"],
"run_at": "document_end"
}
],
"_locales": {
"zh_CN": {
"messages": {
"extensionName": {
"message": "网页助手"
},
"extensionDesc": {
"message": "右键菜单扩展快速收藏网页、AI总结、深度研究分析"
}
}
}
}
}