// ==UserScript== // @name FxxK 知乎故事档案局 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 移除知乎故事档案局的回答 // @author SHIFU // @grant none // @match *.zhihu.com/* // @downloadURL none // ==/UserScript== (function() { 'use strict'; var obj = document.getElementsByClassName("ContentItem AnswerItem"); for(var i = 0;i < obj.length; i++){ var trashNode=obj[i].attributes["data-zop"].value; if(trashNode.indexOf("\"authorName\":\"故事档案局\"")>=0){ console.log("fuck you, 故事档案局"); obj[i].style.display = "none"; } } })();