Greasy Fork

Greasy Fork is available in English.

精简百度、搜狗、360搜索页面

喜欢简洁的人必备脚本。精简百度、搜狗、360主页面,删除左上角、右上角和下方的东西,只留下logo和搜索框,当然也可以自定义删除某个按钮。

目前为 2019-03-02 提交的版本,查看 最新版本

// ==UserScript==
// @name           精简百度、搜狗、360搜索页面
// @namespace  http://tampermonkey.net
// @version        1.1
// @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();


})();