-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathmanifest.json
More file actions
58 lines (51 loc) · 1.17 KB
/
manifest.json
File metadata and controls
58 lines (51 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"manifest_version": 3,
"name": "AI 圆桌 - Multi-AI Roundtable",
"version": "0.1.7",
"description": "让多个 AI 助手围桌讨论,交叉评价,深度协作",
"permissions": [
"sidePanel",
"activeTab",
"tabs",
"scripting",
"storage"
],
"host_permissions": [
"https://claude.ai/*",
"https://chat.openai.com/*",
"https://chatgpt.com/*",
"https://gemini.google.com/*"
],
"side_panel": {
"default_path": "sidepanel/panel.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://claude.ai/*"],
"js": ["content/claude.js"],
"run_at": "document_idle"
},
{
"matches": ["https://chat.openai.com/*", "https://chatgpt.com/*"],
"js": ["content/chatgpt.js"],
"run_at": "document_idle"
},
{
"matches": ["https://gemini.google.com/*"],
"js": ["content/gemini.js"],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_title": "打开 AI 圆桌"
}
}