屏蔽百度右侧的傻屌推荐,整天净他妈的戏子的破逼事儿
需要油猴 或者暴力猴
安装就行了
傻逼百度,不管你搜什么,都推荐他妈的破B戏子的事儿
如果链接迫于压力无法访问了,那自己填进去
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 13 if (location.hostname=="www.baidu.com"){ 14 var auto = setInterval(function() { 15 if (document.getElementById('content_right')){ 16 document.getElementById('content_right').style.display="none"; 17 } 18 if(document.getElementById('rrecom-container')){ 19 document.getElementById('rrecom-container').style.display="none"; 20 } 21 if(document.getElementsByClassName("opr-recommends-merge-content")[0]){ 22 document.getElementsByClassName("opr-recommends-merge-content")[0].style.display="none"; 23 24 } 25 }, 500); 26 } 27 28 })();


浙公网安备 33010602011771号