Greasy Fork is available in English.
隐藏图片和标题
// ==UserScript==
// @name 知乎上班摸鱼隐藏标题和图片
// @namespace http://zhihu.com
// @version 1.3
// @description 隐藏图片和标题
// @author youchao
// @match https://*.zhihu.com/*
// @grant none
// @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js
// ==/UserScript==
(function () {
var imgHiden = function() {
$(".RichContent-cover-inner").each(function(){
$(this).hide();
});
$(".ZVideoRecommendationItem-thumbnailImage").each(function(){
$(this).hide();
});
$(".QuestionHeader-title").each(function(){
$(this).hide();
});
$("iframee").each(function(){
$(this).hide();
});
$("img").each(function(){
$(this).hide();
});
$("svg").each(function(){
$(this).hide();
});
};
imgHiden();
var id = setInterval(function(){
imgHiden();
}, 300)
})()