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 Chat Exporter",
"version": "1.0",
"description": "Export your ChatGPT conversations to text, JSON, markdown, and PDF",
"permissions": [
"activeTab",
"scripting",
"tabs"
],
"host_permissions": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/openai.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/openai.com\/chatgpt*"
],
"js": [
"enhanced-content.js"
],
"css": [
"enhanced-styles.css"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup-complete.html",
"default_title": "Export ChatGPT Chat"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}