Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ChagtGPT Exporter",
"version": "1.0",
"description": "export ChagtGPT conversation to txt, png, markdown, pdf and so on",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"permissions": [],
"host_permissions": [
"https:\/\/chat.openai.com\/*"
],
"action": {
"default_popup": "",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"js": [
"contentScript.js",
"libs\/html2canvas.min.js",
"libs\/jspdf.umd.min.js"
],
"css": [
"styles.css"
],
"run_at": "document_end"
}
],
"content_security_policy": {
"script-src": [
"'self'",
"'unsafe-eval'",
"'unsafe-inline'",
"http:\/\/localhost:*",
"http:\/\/127.0.0.1:*"
]
},
"web_accessible_resources": [
{
"resources": [
"images\/export.png"
],
"matches": [
"https:\/\/chat.openai.com\/*"
]
}
]
}