How to force Mac OS to open "Search with Google" in Chrome

MacosGoogle ChromeSearchSafari

Macos Problem Overview


While using Mac OS, its very useful to use "Search with Google" tool in context menu to directly search selected text from error windows or other content:


enter image description here


But problem is, that it always open Safari by default. I have Google Chrome as default browser, but it makes no sense.

Does anyone know how to force this option open in Google Chrome instead of Safari?

Macos Solutions


Solution 1 - Macos

The OP is not using the context menu in Chrome, and does not have the "Search Google for...." option.

The "Search with Google" entry is provided by Safari and won't work with another browser to my knowledge.

The closest thing that I found in my journey to provide the same desire was to create a service of your own using Automator.

Instructions:

  1. Open Automator and choose Service as the type

  2. Add a "Run Shell Script" action by dragging it to the right pane enter image description here

  3. Add script

    open "http://www.google.com/search?q=$(ruby -rcgi -e 'print CGI.escape $<.read.chomp')"

Adjust the TLD as needed for your country specific Google page. ex: http://www.google.co.in/search?q=

  1. Save the service as "Search Google"
  2. Activate the service in System Preferences and optionally assign a keyboard shortcut. Once activated, "Search Google" will appear in the context menu enter image description here

Solution 2 - Macos

Be sure to choose "Search Google for..." near the top of the list in the right-click dialog box. If you choose "Search with Google" (near the bottom) it's still going to open Safari.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionzur4ikView Question on Stackoverflow
Solution 1 - MacosCasperView Answer on Stackoverflow
Solution 2 - MacosBillView Answer on Stackoverflow