// ==UserScript== // @name 知乎-我不感兴趣 // @namespace // @version 1.2.2 // @description 隐藏掉你可能感兴趣及热门内容推荐 // @author MQ // @match https://www.zhihu.com/ // @grant none // @namespace https://greasyfork.org/users/159603 // @downloadURL none // ==/UserScript== (function() { 'use strict'; const mainFrame = document.querySelector(".TopstoryMain"); var ob = new MutationObserver(function () { //console.log("change triggered"); document.querySelectorAll(".Card.TopstoryItem").forEach(e => { try{ let feature = e.querySelector(".FeedSource-firstline"); if (feature.textContent.match(/你可能感兴趣|热门内容/)) { e.hidden = true; //[...e.children].forEach(inner => inner.hidden = true); console.log(feature.textContent, "hide"); } }catch(x){ console.log(x, e); } }); }); var config = { attributes: true, childList: true }; ob.observe(mainFrame, config); console.log("hooked"); }());