贴吧图片、评论自动展开

点击方法实现贴吧图片、回复自动展开

// ==UserScript==
// @name         贴吧图片、评论自动展开
// @namespace    http://tampermonkey.net/
// @version      1.1
// @license      MIT
// @description  点击方法实现贴吧图片、回复自动展开
// @author       NoWorld
// @match        *://tieba.baidu.com/p/*
// @grant        none
// @icon         https://tb3.bdstatic.com/public/icon/favicon-v2.ico
// ==/UserScript==

(function() {
    'use strict';

    // 点击实现
    function clickElements(selector) {
        const elements = document.querySelectorAll(selector);
        elements.forEach((element) => {
            if (element) {
                element.click();
            }
        });
    }
    // 点击按钮
    const observer = new MutationObserver((mutations) => {
        mutations.forEach((mutation) => {
            if (mutation.addedNodes.length) {
                clickElements('div.replace_tip');
                clickElements('a.j_lzl_m');
            }
        });
    });

    // 加载内容
    observer.observe(document.body, { childList: true, subtree: true });
})();

QingJ © 2025

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