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 AI Search Control", "version": "1.0.1", "description": "Install this extension to block automatic searches in Deepseek AI chat. Press Ctrl + Enter to search manually.", "icons": { "16": "icons\/ICON16.png", "32": "icons\/ICON32.png", "64": "icons\/ICON64.png", "128": "icons\/ICON128.png" }, "permissions": [ "storage", "scripting", "notifications" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Install this extension to block automatic searches in Deepseek AI chat. Press Ctrl + Enter to search manually." }, "content_scripts": [ { "matches": [ "https:\/\/chat.deepseek.com\/*" ], "js": [ "content.js" ] } ] }