您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
精简百度、搜狗、360主页面,删除左上角、右上角和下方的东西,只留下logo和搜索框,当然也可以自定义删除某个按钮。
当前为
// ==UserScript== // @name 精简百度、搜狗、360主页 // @namespace http://tampermonkey.net // @version 1.0 // @description 精简百度、搜狗、360主页面,删除左上角、右上角和下方的东西,只留下logo和搜索框,当然也可以自定义删除某个按钮。 // @author 超逗的二哈少爷 // @match https://www.baidu.com // @match https://www.sogou.com // @match https://www.so.com // @grant none // ==/UserScript== (function() { 'use strict'; //精简百度左上角 $(' #s_upfunc_menus,.s-upfunc-menus ').hide(); //精简百度右上角 $(' #u_sp,.s-isindex-wrap.s-sp-menu ').hide(); //精简百度上方横线 $(' #s_top_wrap ').hide(); //精简百度下方热点新闻 $(' #s_wrap ').hide(); //精简百度底部关于信息 $(' .no-qrcode-layer ').hide(); //精简搜狗左上角 $(' .top-nav ').hide(); //精简搜狗右上角 $(' .user-box ').hide(); //精简搜狗底部二维码 $(' .ewm ').hide(); //精简搜狗底部二维码右侧文字 $(' .erwx ').hide(); //精简搜狗底部右侧关于信息 $(' .ft-info ').hide(); //精简360左上角 $(' .skin-text.skin-text-tab ').hide(); //精简360右上角 $(' .bar.skin-text.skin-text-top,.setting,.changeskin,.remind,.uname ').hide(); //精简360底部 $(' #footer,.skin-text.skin-text-foot ').hide(); })();