Inspect and view changes in DeepSeek Omnibox source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "__MSG_prefix_ask__ DeepSeek AI",
"description": "__MSG_appDesc__",
"version": "2025.3.24",
"author": "Adam Lui",
"homepage_url": "https://deepseekomnibox.com",
"default_locale": "en",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
},
"action": {
"default_title": "__MSG_prefix_ask__ DeepSeek AI"
},
"chrome_settings_overrides": {
"search_provider": {
"name": "__MSG_prefix_ask__ DeepSeek AI",
"search_url": "https://chat.deepseek.com?q={searchTerms}",
"favicon_url": "icons/icon16.png",
"keyword": "@deepseek",
"is_default": false
}
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"lib/deepseek.js",
"lib/dom.js"
]
}
],
"content_scripts": [
{
"matches": [
"https://chat.deepseek.com/*"
],
"run_at": "document_end",
"js": [
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "deepseek.omnibox@adamlui.com",
"strict_min_version": "109.0"
}
}
}