Windows 10 search workaround

A script that works around the search engine limit for windows 10 start menu searches.

  1. // ==UserScript==
  2. // @name Windows 10 search workaround
  3. // @namespace http://onthisphone.tumblr.com
  4. // @version 1.1
  5. // @description A script that works around the search engine limit for windows 10 start menu searches.
  6. // @author Jenna G
  7. // @match https://www.bing.com/*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. document.location.href = "https://www.google.se/search?ie=UTF-8&q=" + document.location.href.split("?")[1].split("&")[0].split("=")[1] + "&gws_rd=cr,ssl&ei=E4W2VcKSM8r9ywOg_p-oDA";
  13. //alert(document.location.href.split("?")[1].split("&")[0].split("=")[1]);