Redirect to DuckDuckGo

This will redirect you to DuckDuckGo when searching with another engine. Only Google & Bing are supported yet.

  1. // ==UserScript==
  2. // @run-at document-start
  3. // @name Redirect to DuckDuckGo
  4. // @namespace iamsirsammy@protonmail.com
  5. // @description This will redirect you to DuckDuckGo when searching with another engine. Only Google & Bing are supported yet.
  6. // @include http://*.bing.com/search?*
  7. // @include https://*.bing.com/search?*
  8. // @include http://*.google.com/search?*
  9. // @include https://*.google.com/search?*
  10. // @version 0.1
  11. // @grant none
  12. // ==/UserScript==
  13. var newurl = "https://duckduckgo.com/?"+document.URL.match(/q\=[^&]*/);
  14. if (newurl != document.URL) location.replace(newurl);
  15.  

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址