Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Oct 11, 2025.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPTS Exporter - Gemini to Pdf or Word", "short_name": "GPTS", "author": "GPTS Exporter", "version": "1.0.5", "description": "Easily download your Gemini conversation as a PDF or Word document with a single click.", "permissions": [ "storage" ], "host_permissions": [ "https:\/\/gemini.google.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:\/\/gemini.google.com\/*", "*:\/\/*.goog\/*" ], "js": [ "contentScript.js" ], "css": [ "css.css" ], "run_at": "document_end", "all_frames": true } ] }