Files
InsightReply/extension/manifest.json
zs 1d17ac03e0
Some checks failed
Extension Build & Release / build (push) Failing after 56s
feat: 扩展优化重构
2026-03-03 02:19:14 +08:00

46 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "InsightReply",
"version": "1.0.0",
"description": "InsightReply 是一个帮助创始人在行业热点中增强社交表达并且输出高质评论的助手",
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "src/background/index.ts",
"type": "module"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"https://twitter.com/*",
"https://x.com/*"
],
"content_scripts": [
{
"js": [
"src/content/index.ts",
"src/content/sidebar-mount.ts"
],
"matches": [
"https://twitter.com/*",
"https://x.com/*"
]
}
],
"commands": {
"toggle-sidebar": {
"suggested_key": {
"default": "Ctrl+Shift+I",
"mac": "Command+Shift+I"
},
"description": "Toggle InsightReply Sidebar"
}
}
}