Files
InsightReply/extension/manifest.json
zs 8cf6cb944b
Some checks failed
Extension Build & Release / build (push) Failing after 1m5s
Backend Deploy (Go + Docker) / deploy (push) Failing after 1m40s
Web Console Deploy (Vue 3 + Vite) / deploy (push) Has been cancelled
feat: 部署初版测试
2026-03-02 21:25:21 +08:00

37 lines
910 B
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/*"
]
}
]
}