使用油猴子 greasemonkey xx 百度 ...

百度首页在登录以后很恶心
没事弹出点垃圾新闻来污染眼球
搜索结果右下角的今日排行榜也是没事就出现垃圾的东西

所以让我们也xx一下百度..

// ==UserScript==
// @name     清理百度首页新闻
// @version  1
// @grant    none
// @match   https://www.baidu.com/*
// ==/UserScript==


(function() {
    'use strict';    
    let __div = document.getElementById('s_wrap');
  
  	if(__div != null){
    	__div.style.display="none";      
    }     
  
  __div = document.getElementById('con-ar');
  
  	if(__div != null){
    	__div.style.display="none";      
    }     
  
})();


世界清静多了

原文地址:https://www.cnblogs.com/cheerupforyou/p/11474288.html