Google to Bing

What does this do?

  1. // ==UserScript==
  2. // @name Google to Bing
  3. // @namespace https://gf.qytechs.cn/users/11580
  4. // @version 1.0
  5. // @description What does this do?
  6. // @author Kadauchi
  7. // @include https://www.mturkcontent.com/dynamic/hit*
  8. // @include https://s3.amazonaws.com/mturk_bulk/hits/*
  9. // @grant GM_log
  10. // @require http://code.jquery.com/jquery-2.1.0.min.js
  11. // ==/UserScript==
  12.  
  13. $(document).ready(function(){
  14. $('a').each(function(){
  15. this.href = this.href.replace('google', 'bing');
  16. });
  17. });

QingJ © 2025

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