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 Print", "version": "0.0.3", "description": "Print your chats as PDF.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_title": "gpt\u6253\u5370f\u5f00\u53d1", "default_icon": "icons\/icon48.png" }, "web_accessible_resources": [ { "resources": [ "imgs\/*", "content\/*", "*.js", "*.css", "*.png", "*.svg", "*.webp", "*.json", "*.html", "*.wasm" ], "matches": [ "*:\/\/chat.openai.com\/*", "*:\/\/chatgpt.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*", "*:\/\/chatgpt.com\/*" ], "world": "MAIN", "js": [ "content\/main.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/chat.openai.com\/*", "*:\/\/chatgpt.com\/*" ], "css": [ "content\/index.css" ], "js": [ "content\/index.js" ], "run_at": "document_start" } ] }