简书屏蔽热门故事

简书屏蔽烦人的热门故事

目前为 2023-03-05 提交的版本。查看 最新版本

// ==UserScript==
// @name         简书屏蔽热门故事
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  简书屏蔽烦人的热门故事
// @match        https://www.jianshu.com/p/*
// @grant        none
// @license      MIT
// @author       https://gf.qytechs.cn/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]);
            }
        }
    }
})();

QingJ © 2025

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