In incognito mode, I would like Chrome to use DuckDuckGo as the search engine (searches from the address bar / omnibox).
In normal mode, I would like to keep Google as the default search engine.
How can I do this?
12 Answers
I have solved this problem by writing a small tampermonkey script, which will redirect your search request from google to duckduckgo, if it detects that you are using incognito mode. (I tested it with Chrome 75.0.3770.142 on Linux)
Script:
However, it is more of a workaround than a solution.
2To others who might still be looking for a solution, here's a simple hack.
First, create a shortcut for your browser on Desktop
Next, right-click on it, click
properties, and then go to theshortcuttabIn the
Targetfield, append the following lines to the existing text:For Chromium-based browsers like Google Chrome or Brave Browser,
--incognito
For Edge or Mozilla Firefox or Opera
- private
The final text might look something like this:
"C:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe" --incognito
Next, set up a shortcut key to open the incognito tab. To do this, click on the
Shortcut keytext input (in the same properties window). Its default value would beNone. Now, press the combination of keys you want as the shortcut. For example, if you want the defaultCTRL + SHIFT + N, then press this. Once the value ofTargetis set to what you want, save and close the window.
And that's it, you're done. Now whenever you press CTRL + SHIFT + N on your computer, it'll open an incognito window of your browser with the default search engine as DuckDuckGo.
The above steps are taken from this article.