Initial commit

This commit is contained in:
zs
2026-02-28 20:05:15 +08:00
commit c66f5f9be4
185 changed files with 18356 additions and 0 deletions

33
extension/manifest.json Normal file
View File

@@ -0,0 +1,33 @@
{
"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/*"
]
}
]
}