NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Baidu.com Home Page Cleaner // @author bacccc // @namespace http://tampermonkey.net/ // @license MIT // @version 0.1 // @description Clean content on the homepage of baidu.com // @author Larry.Zhang@jiufangkeji.com // @match *://www.baidu.com/index* // @match *://www.baidu.com // @grant unsafeWindow // @run-at document-body // @updateURL https://openuserjs.org/meta/bacccc/My_Script.meta.js // ==/UserScript== (function() { 'use strict'; var oContent = document.getElementById('s_main'); var oContentParent = oContent.parentNode; oContentParent.removeChild(oContent); })();