Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT to PDF \u2013 Save & Export Chats as PDF, Word & Markdown", "short_name": "GPTS", "author": "GPTS Exporter", "version": "2.0.8", "description": "One-click export ChatGPT to PDF, Word, or Markdown. Keeps code, tables,math equations and images perfectly formatted.", "permissions": [ "storage" ], "host_permissions": [ "https:\/\/chatgpt.com\/*", "https:\/\/gptsexporter.com\/api\/v1\/*" ], "externally_connectable": { "matches": [ "https:\/\/gptsexporter.com\/*" ] }, "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icon32.png", "48": "icon64.png", "128": "icon128.png" } }, "icons": { "16": "icon32.png", "48": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chatgpt.com\/*" ], "js": [ "contentScript.js" ], "css": [ "css.css" ], "run_at": "document_end" } ] }