知乎-我不感兴趣

隐藏掉你可能感兴趣

当前为 2017-11-17 提交的版本,查看 最新版本

// ==UserScript==
// @name         知乎-我不感兴趣
// @namespace
// @version      1.0
// @description  隐藏掉你可能感兴趣
// @author       MQ
// @match        https://www.zhihu.com/
// @grant        none
// @namespace https://gf.qytechs.cn/users/159603
// ==/UserScript==

(function() {
    'use strict';

    const mainFrame = document.querySelector(".TopstoryMain");

    var ob = new MutationObserver(function () {
        console.log("change triggered");
        try{
            document.querySelectorAll(".Card.TopstoryItem").forEach(e => {
                if (e.innerText.match(/你可能感兴趣|热门内容/)) {
                    e.hidden = true;
                    //[...e.children].forEach(inner => inner.hidden = true);
                }
            });
        } catch(e) {
            console.log(e);
        }
    });

    var config = { attributes: true, childList: true };

    ob.observe(mainFrame, config);

    console.log("hooked");
}());

QingJ © 2025

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