轻小说阅读器

修改自pppploi8的通用阅读器,为“真白萌”和“哔哩轻小说”提供阅读模式

< 脚本轻小说阅读器的反馈

评价:好评 - 脚本运行良好

§
发表于:2025-03-14

请问作者可以把去除“该内容被AdGuard/AdBlock类插件屏蔽”的功能加进去吗?

(function() {
    const sib = document.querySelector("h1").nextSibling;
    // 跳过有id的元素,避免误伤TextContent
    if (sib.id) {
        return;
    }
    sib.remove();
})();
§
发表于:2025-03-21

改了下,避免误伤。

(function() {
    const sib = document.querySelector("h1").nextSibling;
    // 跳过有id的元素,避免误伤TextContent。
    // 此外,如果没有TextContent,则可能是在其它页面(例如目录),所以什么也不干。
    if (sib.id || !document.getElementById("TextContent")) {
        return;
    }
    sib.remove();
})();
YCZ01111作者
§
发表于:2025-03-24

已加

发表回复

登录以发表回复。