AutoSwitchCNENInBing

Auto switch en cn with bing

  1. // ==UserScript==
  2. // @name AutoSwitchCNENInBing
  3. // @namespace com.github.shjanken
  4. // @version 0.1
  5. // @description Auto switch en cn with bing
  6. // @author janken.wang@hotmail.com
  7. // @match https://*.bing.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. setInterval(function() {
  15. var tip = document.getElementById('tipTitle');
  16. if(tip) {
  17. var tipText = tip.innerText;
  18. if(tipText &&
  19. (tipText.includes('国内版') || tipText.includes('国际版'))) {
  20. tip.click();
  21. }
  22. }
  23. }, 2000);
  24. })();

QingJ © 2025

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