Greasy Fork 还支持 简体中文。

Googler

Redirct result page of Daum, Bing and Yahoo to Google.

目前為 2021-12-23 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Googler
  3. // @name:ko 구글러
  4.  
  5. // @description Redirct result page of Daum, Bing and Yahoo to Google.
  6. // @description:ko 다음, 빙, 야후 검색결과를 구글 검색결과로 바꿉니다.
  7.  
  8. // @namespace https://ndaesik.tistory.com/
  9. // @version 2021.12.23.14:12
  10. // @author ndaesik
  11. // @icon https://www.google.com/s2/favicons?domain=google.com
  12. // @include *.bing.com/search?*
  13. // @include *search.daum.net/search?*
  14. // @include *search.yahoo.com/search?*
  15.  
  16. // @run-at document-start
  17. // ==/UserScript==
  18. location.replace("https://www.google.com/search?"+document.URL.match(/q\=[^&]*/));