-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.72 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1.72 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
{
"manifest_version": 3,
"name": "ReThread",
"version": "1.0.0",
"description": "Save, organize and search your AI chats across Claude, ChatGPT, Gemini and Grok",
"permissions": ["storage", "sidePanel"],
"host_permissions": ["https://claude.ai/*", "https://chatgpt.com/*", "https://chat.openai.com/*", "https://gemini.google.com/*", "https://grok.com/*"],
"background": {
"service_worker": "background/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["https://claude.ai/*", "https://chatgpt.com/*", "https://chat.openai.com/*", "https://gemini.google.com/*", "https://grok.com/*"],
"js": ["shared/platforms.js", "content/content-script.js"],
"run_at": "document_idle"
}
],
"side_panel": {
"default_path": "sidepanel/sidepanel.html"
},
"commands": {
"_execute_action": {
"suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" },
"description": "Open ReThread panel"
},
"quick-save": {
"suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" },
"description": "Quick save current chat"
}
},
"action": {
"default_title": "ReThread",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"web_accessible_resources": [
{
"resources": ["content/content-styles.css"],
"matches": ["https://claude.ai/*", "https://chatgpt.com/*", "https://chat.openai.com/*", "https://gemini.google.com/*", "https://grok.com/*"]
}
]
}