Bing to Google

This will redirect you to Google from Bing after you search.

  1. // ==UserScript==
  2. // @run-at document-start
  3. // @name Bing to Google
  4. // @namespace leorijn223@gmail.com
  5. // @description This will redirect you to Google from Bing after you search.
  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://google.com/search?"+document.URL.match(/q\=[^&]*/);
  13. if (newurl != document.URL) location.replace(newurl);