百度搜索网页旁边的热门新闻删除

在工作环境中使用百度时,删除右边的热门新闻注意力被带走。

// ==UserScript==
// @name         百度搜索网页旁边的热门新闻删除
// @version      1.0.1
// @description  在工作环境中使用百度时,删除右边的热门新闻注意力被带走。
// @author       ZDH
// @license      MIT
// @date         2018-03-28
// @modified     2018-03-28
// @include      https://www.baidu.com/*
// @require      https://code.jquery.com/jquery-latest.js
// @run-at       document-start
// @grant        unsafeWindow
// @grant        GM_setClipboard
// @icon         https://www.baidu.com/favicon.ico
// @namespace    undefined
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement("style");
    style.type = "text/css";

    var html = "";

    html += "#content_right .FYB_RD,#content_right .cr-content {display:none;} .container_s #content_right{border: none;} .container_l #content_right{border: none;}";
    html += ".hint_right_middle,.chunwan-wrapper{display: none;}";//2019-01-29 增加春晚app屏蔽

    style.innerHTML = html;
    window.document.head.appendChild(style);

})();