-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
59 lines (59 loc) · 1.47 KB
/
manifest.json
File metadata and controls
59 lines (59 loc) · 1.47 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
59
{
"manifest_version": 3,
"name": "AI Chat Exporter",
"description": "Export conversations from AI platforms (Gemini, Claude, ChatGPT). Download chats as JSON, Markdown, or PDF with media preserved.",
"version": "1.0.0",
"author": "bluCoder",
"homepage_url": "https://github.com/TheBluCoder/AI-chat-exporter",
"icons": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png",
"48": "assets/icons/icon-48.png",
"128": "assets/icons/icon-128.png"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "src/popup/popup.html",
"default_title": "Export AI Conversation",
"default_icon": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png",
"48": "assets/icons/icon-48.png",
"128": "assets/icons/icon-128.png"
}
},
"content_scripts": [
{
"matches": [
"https://chatgpt.com/c/*",
"https://gemini.google.com/app/*",
"https://claude.ai/chat/*"
],
"js": [
"src/lib/browser-polyfill.js",
"src/content-script.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"src/scrapers/*.js",
"src/scrapers/**/*.js",
"src/utils-modules/*.js"
],
"matches": [
"https://chatgpt.com/*",
"https://gemini.google.com/*",
"https://claude.ai/*"
]
}
]
}