Bing to Google

uses bing instead of google while still working on microsoft rewards

// ==UserScript==
// @name         Bing to Google
// @namespace    https://github.com/randomstuff69/
// @version      1.0
// @description  uses bing instead of google while still working on microsoft rewards
// @author       randomstuff69
// @match        *
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    if (window.location.hostname.includes('bing.com')) {
        window.location.href = window.location.href.replace('bing.com', 'google.com');
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址