360文库美化

隐藏广告与推荐文档

// ==UserScript==
// @name         360文库美化
// @namespace    http://tampermonkey.net/
// @version      0.2.2
// @description  隐藏广告与推荐文档
// @author       AN drew
// @match        https://wenku.so.com/*
// @require      https://lib.baomitu.com/jquery/3.5.0/jquery.min.js
// @grant        none
// ==/UserScript==


(function() {
    'use strict';

    setInterval(function(){
        $("#hot-docs").hide();
        $("#e_idea_wk_detail_hot").hide()
        $("#interest").hide()
        $("#js-search-one").hide()
        $(".search-rela").hide()
        $("#js-busi").hide()
        $("#js-busi-base").hide()
        $("[id*='busiPage']").hide()
        $(".side-mod").hide()
        $(".rec-left").hide()
        $("#onesearch").parent().hide()
    },1)
    $(".js-doc-more").click()

})();