您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
在工作环境中使用百度时,删除右边的热门新闻注意力被带走。
// ==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); })();