須要油猴 或者暴力猴ide
安裝就好了3d
傻逼百度,無論你搜什麼,都推薦他媽的破B戲子的事兒code
若是連接迫於壓力沒法訪問了,那本身填進去blog
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 })();