知乎屏蔽盐选

一键屏蔽知乎的盐选内容

目前为 2021-02-26 提交的版本。查看 最新版本

// ==UserScript==
// @name         知乎屏蔽盐选
// @namespace    https://github.com/KingCheni/Zhihu-Block-YanXuan
// @version      1.0
// @description  一键屏蔽知乎的盐选内容
// @author       KingChen
// @match        https://*.zhihu.com/*
// @grant        none
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';
    let zhihu = {};
    zhihu.clear = ()=>{
        $(".Card").find(".List-item").each(function(){
            //let that=this;
            if($(this).find(".KfeCollection-OrdinaryLabel-content").text().indexOf("盐选")!=-1){
                $(this).hide()
            }
        })
    }
    zhihu.timer = setInterval(function(){
        if($(".Card").find(".List-item").length>0){
            zhihu.clear();
            clearInterval(zhihu.timer);
        }
    },1000)
    zhihu.onMouseScroll = (e)=>{
        //e.preventDefault();
        var wheel = e.originalEvent.wheelDelta || -e.originalEvent.detail;
        var delta = Math.max(-1, Math.min(1, wheel) );
        if(delta<0){
            //console.log('向下滚动');
            zhihu.clear();
        }else{
            //console.log('向上滚动');
        }
    }
    $(document).on('mousewheel DOMMouseScroll', zhihu.onMouseScroll);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址