(Microsoft Rewards) Bing to Google

Changes from Bing to Google

目前為 2023-05-06 提交的版本,檢視 最新版本

// ==UserScript==
// @name (Microsoft Rewards) Bing to Google
// @description Changes from Bing to Google
// @include http://*.bing.com/search?*
// @include https://*.bing.com/search?*
// @version 0.0.0.1
// @icon https://rewards.bing.com/rewards.png
// @author JAS1998
// @copyright 2023+ , JAS1998 (https://greasyfork.org/users/4792)
// @namespace https://greasyfork.org/users/4792
// @license CC BY-NC-ND 4.0; http://creativecommons.org/licenses/by-nc-nd/4.0/
// @compatible Chrome tested with Tampermonkey
// @contributionURL https://www.paypal.com/donate?hosted_button_id=9JEGCDFJJHWU8
// @run-at document-start
// ==/UserScript==

/* jshint esversion: 9 */

var referrer = document.referrer;

if (referrer.includes('rewards.bing.com')) {
    // nothing
}
else if (referrer.includes('.bing.com/search?q=')) {
    // nothing
}
else {
var googlesearch = "https://google.com/search?"+document.URL.match(/q\=[^&]*/);
if (googlesearch != document.URL) location.replace(newurl);
}