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 PDF Conversation Exporter", "version": "1.1", "description": "Export ChatGPT conversations to PDF with selective questions and answers.", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chatgpt.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "lib\/*" ], "matches": [ "https:\/\/chatgpt.com\/*" ] } ] }