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 Response PDF Exporter",
"version": "2.1",
"description": "Export ChatGPT answers as PRO layout PDFs, Batch Export, CoverPages, Headers\/Footers, Docx, Excel, Cloud, Citations, many more.",
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/filmfreebies.com\/*"
],
"background": {
"service_worker": "session-worker.js",
"type": "module"
},
"action": {
"default_title": "AI Response Exporter Lite"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/*.openai.com\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/*.chatgpt.com\/*"
],
"js": [
"html2pdf.bundle.min.js",
"content.general.js",
"content.pdf.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"icon.png"
],
"matches": [
"<all_urls>"
]
}
]
}