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", "description": "Capture ChatGPT magic, thread by thread, pic by pic.", "version": "1.0.0", "manifest_version": 3, "name": "chatGPT snapshot", "author": "[email protected]", "icons": { "16": "icons\/icon.png", "32": "icons\/icon.png", "48": "icons\/icon.png", "64": "icons\/icon.png", "128": "icons\/icon.png" }, "action": { "default_icon": { "16": "icons\/icon.png", "32": "icons\/icon.png", "48": "icons\/icon.png", "64": "icons\/icon.png", "128": "icons\/icon.png" }, "default_title": "Click Me", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "permissions": [ "clipboardWrite", "downloads" ] }