Windows 10 search workaround

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

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

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