How to set different search engine in incognito mode?

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?

1

2 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.

2

To others who might still be looking for a solution, here's a simple hack.

  1. First, create a shortcut for your browser on Desktop

  2. Next, right-click on it, click properties, and then go to the shortcut tab

  3. In the Target field, 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

  4. Next, set up a shortcut key to open the incognito tab. To do this, click on the Shortcut key text input (in the same properties window). Its default value would be None. Now, press the combination of keys you want as the shortcut. For example, if you want the default CTRL + SHIFT + N, then press this. Once the value of Target is 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.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like