Bing to DDG

Redirects Bing searches to DuckDuckGo. Use it with EdgeDeflector to banish Bing

  1. // ==UserScript==
  2. // @run-at document-start
  3. // @name Bing to DDG
  4. // @namespace pureandapplied.com.au
  5. // @description Redirects Bing searches to DuckDuckGo. Use it with EdgeDeflector to banish Bing
  6. // @include http://*.bing.com/search?*
  7. // @include https://*.bing.com/search?*
  8. // @version 1
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var newurl = "https://duckduckgo.com/?"+document.URL.match(/q\=[^&]*/);
  13. if (newurl != document.URL) location.replace(newurl);