🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

360问答美化&360新知美化

360问答隐藏左栏,隐藏广告,显示全部回答;360新知隐藏右栏,隐藏插屏广告;支持电脑端和手机端

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         360问答美化&360新知美化
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  360问答隐藏左栏,隐藏广告,显示全部回答;360新知隐藏右栏,隐藏插屏广告;支持电脑端和手机端
// @author       AN drew
// @match        https://*.wenda.so.com/*
// @match        http://xinzhi.wenda.so.com/*
// @require      https://lib.baomitu.com/jquery/3.5.0/jquery.min.js
// @grant        none
// ==/UserScript==

(function() {

    var url = window.location.href;
    if(url.indexOf("wenda.so.com/u")== -1)
    {
        $("#bd").attr("style","display:flex;justify-content:center;align-items:center;");
        $(".main").attr("style","width:1175px;min-height:0px;")
        setTimeout(function(){
            $(".main").attr("style","width:1175px;min-height:0px;")
        })
        $(".umeditor-wrap.js-umeditor-wrap").attr("style","width:1173px;min-height:226px;");
        $(".edui-container").attr("style","width:1173px;");
        $("#detailUmeditor").attr("style","width: 1150px; min-height: 165px; z-index: 0;");
        $(".js-detail-main").attr("style","width:1175px")
        $(".aside").hide()
    }

    setInterval(function(){
        $(".hot-list-wrap").hide()
        $("#business").hide()
        $("#info-list").hide()
        $(".js-recflow-list").hide()

        $(".enterprise-det").hide()
        $(".e_idea_list").hide()
        $("#e_idea_wenda_leftBox").hide()
        $(".enterprise_intro").hide()
        $(".js-interested").attr("style","display:none; visibility:hidden; position:absolute; top:-1000px;");
        $(".rec-left").attr("style","display:none; visibility:hidden; position:absolute; top:-1000px;");
        $(".art-flow").hide()
        $("#mediav-bot").hide()
        $("#detail-leftside-rec").hide()
        $("#js-mod-fixed-float").hide()
        $(".top-search-banner").hide()
        $(".detail-guess").hide()
        $("#detail-guess-wrap").hide()
        $("#js-mod-recommond-list").hide()
        $("#autoList").hide()
        $("#onesearch").hide()
        $("#task-left-wrap").remove()
        $("#js-fixed-rt-bot-inn").hide()
        $(".busi-article").hide()
        $("#e_xinzhi_detail_interested").hide()
        $("#js-list-item").hide()
        $("#news-card").hide()
        $("#garllery").hide()
        $("#business").hide()
        $(".card-bor").hide()
        $(".js-relate-list").hide()
        $(".js-ajax-askmore").hide()
        $(".js-interest-list").hide()
        $("#interest-list").hide()
        $(".g-scroll-loading").hide()
        $("#info-list").hide()
        $("#js-rec").hide()
        $(".mod-detail-normal").attr("style","display:none; visibility:hidden; position:absolute; top:-1000px;");
        $(".js-busi-item").attr("style","display:none; visibility:hidden; position:absolute; top:-1000px;");
        $(".mod-share").hide()
        $(".mod-wechat-qrcode-mini").hide()

        $("h2").each(function(){
            console.log($(this).get(0))
            if($(this).text().indexOf("您可能感兴趣的内容") > -1)
                $(this).hide()
            else if($(this).text().indexOf("为您推荐") > -1)
                $(this).hide()
            else if($(this).text().indexOf("今日热点") > -1)
                $(this).hide()
            else if($(this).text().indexOf("相关资讯") > -1)
                $(this).hide()
        })

        if($(".js-answer-page").length>0)
            $(".js-answer-page").get(0).click()
    },1)

    $(".username").removeClass("dsp-inline-block");

    $(".mod-see-other").click()
    $(".btn-wrap").click()
    $(".unfold-page").click()
    $(".ico-arr-down").click()

})();