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: PDF & HTML",
"version": "1.0.2",
"description": "Export ChatGPT conversations as polished PDFs or clean HTML pages.Fast, private, and easy to use.",
"action": {
"default_title": "ChatGPT Exporter: PDF & HTML",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"unlimitedStorage"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"host_permissions": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles\/print.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"reader.html",
"reader.js",
"styles\/reader.css"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
}