fuck百度搜索右侧推广

将百度右侧的结果屏蔽掉。

  1. // ==UserScript==
  2. // @name fuck百度搜索右侧推广
  3. // @namespace http://kongpingfan.com/
  4. // @version 0.1.2
  5. // @description 将百度右侧的结果屏蔽掉。
  6. // @author pyufftj
  7. // @match *://*.baidu.com/*
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. if (location.hostname=="www.baidu.com"){
  13. var auto = setInterval(function() {
  14. if (document.getElementById('content_right')){
  15. document.getElementById('content_right').style.display="none";
  16. }
  17. if(document.getElementById('rrecom-container')){
  18. document.getElementById('rrecom-container').style.display="none";
  19. }
  20. if(document.getElementsByClassName("opr-recommends-merge-content")[0]){
  21. document.getElementsByClassName("opr-recommends-merge-content")[0].style.display="none";
  22. }
  23. }, 500);
  24. }
  25. })();

QingJ © 2025

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