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 Quick Search",
"description": "Activate this extension to search on Google by using !S before your query or right-click for instant Deepseek Chat access ",
"version": "1.1.0",
"icons": {
"16": "icons\/ICON16.png",
"32": "icons\/ICON32.png",
"64": "icons\/ICON64.png",
"128": "icons\/ICON128.png"
},
"omnibox": {
"keyword": "!S"
},
"permissions": [
"contextMenus",
"scripting",
"notifications"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup\/popup.html"
}
}