Windows 10 search workaround

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Windows 10 search workaround
// @namespace    http://onthisphone.tumblr.com
// @version      1.1
// @description  A script that works around the search engine limit for windows 10 start menu searches.
// @author       Jenna G
// @match        https://www.bing.com/*
// @grant        none
// @run-at document-start
// ==/UserScript==

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";
//alert(document.location.href.split("?")[1].split("&")[0].split("=")[1]);