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": "Deepseek Chat Exporter", "version": "1.1.1", "description": "Install this extension to download your chats in PDF, TEXT, JSON, PNG, or CSV with one click.", "icons": { "16": "icons\/ICON16.png", "32": "icons\/ICON32.png", "64": "icons\/ICON64.png", "128": "icons\/ICON128.png" }, "permissions": [ "activeTab", "scripting", "notifications" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.deepseek.com\/*" ], "js": [ "content.js" ] } ], "host_permissions": [ "<all_urls>" ], "web_accessible_resources": [ { "resources": [ "lib\/*" ], "matches": [ "https:\/\/chat.deepseek.com\/*" ] } ] }