Greasy Fork is available in English.
简书屏蔽烦人的热门故事
ของเมื่อวันที่
// ==UserScript==// @name 简书屏蔽热门故事// @namespace http://tampermonkey.net/// @version 0.1// @description 简书屏蔽烦人的热门故事// @match https://www.jianshu.com/p/*// @grant none// @license MIT// @author https://gfork.dahi.icu/users/574395-frammolz-amanda// ==/UserScript==(function() {'use strict';window.onload=function(){const sections = document.getElementsByTagName('section');for (let i = 0; i < sections.length; i++) {const h3 = sections[i].getElementsByTagName('h3')[0];if (h3 && h3.textContent.trim() === '热门故事') {sections[i].parentNode.removeChild(sections[i]);}}}})();