Bing to Google

uses bing instead of google while still working on microsoft rewards

  1. // ==UserScript==
  2. // @name Bing to Google
  3. // @namespace https://github.com/randomstuff69/
  4. // @version 1.0
  5. // @description uses bing instead of google while still working on microsoft rewards
  6. // @author randomstuff69
  7. // @match *
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. if (window.location.hostname.includes('bing.com')) {
  16. window.location.href = window.location.href.replace('bing.com', 'google.com');
  17. }
  18. })();

QingJ © 2025

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