Googler

Change the search results of Daum, Bing and Yahoo to Google search results.

  1. // ==UserScript==
  2. // @name Googler
  3. // @name:ko 구글러
  4.  
  5. // @description Change the search results of Daum, Bing and Yahoo to Google search results.
  6. // @description:ko 다음, 빙, 야후 검색결과를 구글 검색결과로 바꿉니다.
  7.  
  8. // @namespace https://ndaesik.tistory.com/
  9. // @version 2022.06.15.22.23
  10. // @author ndaesik
  11. // @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://www.google.com
  12. // @match *.bing.com/search?*
  13. // @match *search.daum.net/search?*
  14. // @match *search.yahoo.com/search?*
  15.  
  16. // @run-at document-start
  17. // ==/UserScript==
  18.  
  19. location.replace( 'https://www.google.com/search?q=' + document.URL.split(/[?|&]q=|p=/)[1].split('&')[0] )