Dzen Автоматическое расширение комментариев и текста

Автоматически нажимает «Показать больше комментариев» и расширять текстовые ссылки «eщё» на статьях DZEN с использованием jQuery.

// ==UserScript==
// @name         Dzen Автоматическое расширение комментариев и текста
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Автоматически нажимает «Показать больше комментариев» и расширять текстовые ссылки «eщё» на статьях DZEN с использованием jQuery.
// @author       Your Name Here
// @match        https://dzen.ru/a/*
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// @grant        none
// @run-at       document-idle
// @license MIT
// ==/UserScript==

/* global $ */

(function() {
    'use strict';

    // --- Configuration ---
    const commentCheckIntervalMs = 1000; // How often to check for the "Show More Comments" button (milliseconds)
    const textCheckIntervalMs = 1500;    // How often to check for "ещё" text links (milliseconds)
    const finalCheckDelayMs = 3000;      // How long to keep checking for "ещё" after the last comment button click (milliseconds)
    // --- End Configuration ---

    console.log("Dzen Auto Expander: Script started.");

    // Wait for jQuery to be ready
    $(function() {
        console.log("Dzen Auto Expander: jQuery ready, starting intervals.");

        let commentIntervalId = null;
        let textIntervalId = null;
        let finalCheckTimeoutId = null;

        // Function to find and click the "Show More Comments" button
        function clickShowMoreComments() {
            const $button = $('button[data-kgp0f35nx="show-more-comments"]:visible');
            if ($button.length > 0) {
                console.log('Dzen Auto Expander: Clicking "Show More Comments"...');
                $button.click();
                // Clear any pending final check timeout because we found the button again
                if (finalCheckTimeoutId) {
                    clearTimeout(finalCheckTimeoutId);
                    finalCheckTimeoutId = null;
                }
                return true; // Button found and clicked
            }
            return false; // Button not found or not visible
        }

        // Function to find and click "ещё" text links
        function clickShowMoreText() {
            const $expandLinks = $('span.comments2--rich-text__expandWord-2_:visible');
            if ($expandLinks.length > 0) {
                console.log(`Dzen Auto Expander: Clicking ${$expandLinks.length} "ещё" links...`);
                $expandLinks.each(function() {
                    // Check again if it's still visible before clicking, avoids potential errors
                    if ($(this).is(':visible')) {
                         $(this).trigger('click'); // Use trigger for potentially better event handling
                    }
                });
            }
        }

        // Interval to repeatedly click "ещё" links
        textIntervalId = setInterval(clickShowMoreText, textCheckIntervalMs);

        // Interval to repeatedly click the "Show More Comments" button
        commentIntervalId = setInterval(() => {
            if (!clickShowMoreComments()) {
                // Button not found, stop checking for it
                clearInterval(commentIntervalId);
                console.log('Dzen Auto Expander: "Show More Comments" button gone. Stopping comment checks.');

                // Schedule a final check for "ещё" links after a delay, then stop checking for text
                if (!finalCheckTimeoutId) { // Prevent multiple timeouts if the interval runs again briefly
                    finalCheckTimeoutId = setTimeout(() => {
                        console.log('Dzen Auto Expander: Performing final check for "ещё" links...');
                        clickShowMoreText(); // One last check
                        clearInterval(textIntervalId); // Now stop checking for text
                        console.log("Dzen Auto Expander: Stopped checking for 'ещё' links. Expansion complete.");
                    }, finalCheckDelayMs);
                }
            } else {
                 // If we clicked the button, also check for new text immediately
                 // Use a small timeout to allow the DOM to potentially update after the click
                 setTimeout(clickShowMoreText, 150);
            }
        }, commentCheckIntervalMs);

        // Initial checks right after page idle and jQuery ready
        clickShowMoreComments();
        setTimeout(clickShowMoreText, 200); // Slight delay for initial text

    }); // End jQuery ready

})(); // End IIFE

QingJ © 2025

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