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 - Search Redirection ",
"version": "1.0",
"description": "Install our extension to redirect Google searches to DeepSeek Chat for AI-powered answers instantly.",
"permissions": [
"notifications",
"tabs"
],
"icons": {
"16": "iocn 16.png",
"19": "icon 32.png",
"38": "icon 64.png",
"48": "icon 128.png",
"128": "icon 512.png"
},
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.deepseek.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
]
}