Windows 10 search workaround

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

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==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]);