Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ChatGPT Exporter",
"description": "Export ChatGPT conversations to Markdown with live preview. Free local downloads; Pro saves to Google Drive with folders.",
"version": "1.0.0",
"action": {
"default_popup": "src\/popup.html"
},
"permissions": [
"activeTab",
"scripting",
"downloads",
"storage",
"identity",
"tabs"
],
"host_permissions": [
"https:\/\/chat.openai.com\/*",
"https:\/\/*.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/*.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"src\/content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "src\/background.js",
"type": "module"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
}