Files
InsightReply/extension/manifest.json
2026-02-28 20:05:15 +08:00

33 lines
823 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"
},
"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/*"
]
}
]
}