baidu2bing

百度搜索页面增加bing搜索

  1. // ==UserScript==
  2. // @name baidu2bing
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 百度搜索页面增加bing搜索
  6. // @author You
  7. // @match *://*.baidu.com/*s?*
  8. // @match *://*.baidu.com/*search*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var a=document.getElementsByTagName("body")[0];
  16. var a2=document.createElement("input");
  17. a.appendChild(a2)
  18. a2.value='Bing一下'
  19. a2.style.color='#E1489E'
  20. a2.style.width='60px'
  21. a2.id='bingsr'
  22. a2.style.position = "fixed";
  23. a2.style.left = "0px";
  24. a2.style.top = "70px";
  25. a2.style.border='1px solid #e2e2e4'
  26. //a2.setAttribute("href",url)
  27. a2.setAttribute("readonly",true)
  28. a2.onclick=function(){var str=$('#kw')[0].value;var url='https://cn.bing.com/search?q='+str;window.location.href=url}
  29. // Your code here...
  30. })();

QingJ © 2025

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