kone
소미소프트

소미소프트

댓글 자동확장 개선 스크립트

05/31/2025, 08:06:09
유틸
2312 views · 6 likes

https://kone.gg/s/somisoft/b3Kid-M_YjOKD_kofh5zyb

여기 이분 스크립트에서 챗지피티로 댓글 확장 코드만 추출 후 개선한 스크립트입니다. 문제시 글삭함

원본 작성자가 삭제 요청시 글내림(허락받음ㅎ). 오류 생기면 스크립트 삭제 추천


1

원본 댓글 확장은 대댓 확장만 자동이고 댓글 더 불러오기는 자동이 아니라서 추가했습니다.


1
1

템퍼몽키 확장프로그램 받으시고 새 스크립트 만들기 > 안에 내용 지우고 스크립트 복붙 > 파일 저장


아래는 스크립트입니다.

// ==UserScript==
// @name         kone 댓글 자동 확장 + 더 불러오기
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  kone.gg에서 댓글을 자동으로 확장하고 '댓글 더 불러오기'도 자동 클릭합니다.
// @author       김머시기
// @match        https://kone.gg/*
// @grant        none
// @license      MIT
// @run-at       document-idle
// ==/UserScript==

(function () {
    'use strict';

    function clickAllExpandButtons() {
        const expandButtons = document.querySelectorAll('button');
        let clickedAny = false;

        expandButtons.forEach(button => {
            try {
                const text = button.textContent.trim();
                const isCommentExpand = /^\d+개의 댓글$/.test(text);
                const isLoadMore = text === '댓글 더 불러오기';

                if ((isCommentExpand || isLoadMore) && button.offsetParent !== null) {
                    button.click();
                    clickedAny = true;
                }
            } catch (e) {
                // 무시
            }
        });

        if (clickedAny) {
            // 여전히 확장할 수 있는 버튼이 남아있을 수 있으므로 재귀 호출
            setTimeout(clickAllExpandButtons, 500);
        }
    }

    function updateGlobalStyles() {
        const styleFix = document.createElement('style');
        styleFix.textContent = `
            .comment-wrapper,
            .comment-wrapper .overflow-x-auto,
            .comment-wrapper .overflow-hidden,
            .thread-body-content .overflow-hidden {
                overflow: visible !important;
                max-height: none !important;
            }
        `;
        document.head.appendChild(styleFix);
    }

    function runCommentFix() {
        clickAllExpandButtons();
        updateGlobalStyles();
    }

    const observer = new MutationObserver(() => {
        clearTimeout(commentFixTimer);
        commentFixTimer = setTimeout(runCommentFix, 100);
    });

    let commentFixTimer = null;

    observer.observe(document.body, { childList: true, subtree: true });
    observer.observe(document.documentElement, { attributes: true, attributeFilter: ['class'] });

    function observeURLChange() {
        let lastUrl = location.href;

        const urlChangeHandler = () => {
            if (location.href !== lastUrl && location.href.includes('/s/')) {
                lastUrl = location.href;
                setTimeout(runCommentFix, 500);
            }
        };

        const urlObserver = new MutationObserver(urlChangeHandler);
        urlObserver.observe(document.body, { childList: true, subtree: true });

        const originalPush = history.pushState;
        history.pushState = function () {
            originalPush.apply(this, arguments);
            urlChangeHandler();
        };

        window.addEventListener('popstate', urlChangeHandler);
    }

    const init = () => {
        runCommentFix();
        observeURLChange();
    };

    if (document.readyState === 'complete' || document.readyState === 'interactive') {
        init();
    } else {
        document.addEventListener('DOMContentLoaded', init);
    }
})();
6
1 comment
07/30/25
개추콘
[노모파일, AI] 파치몬 -8bit MONSTER-
유틸
soxocel777
04/29 20426 56
[야애니/알림] 음오옥 똰지 3~4화 업 알림
영상
공승아
04/29 19563 44
(구매보급/자막판) 3종 영역전개
소리
Ghost
04/29 22313 108
4월 영상 2개 [FHD] (누드버전)
영상
브레머튼
04/29 22187 107
[Okinaga Umanosuke] 좀도둑 유부녀 참교육하는 이야기
동인
ㅇㅇ
04/29 36908 111
(구매보급) 【한국어 자막판】 인큐버스 제국의 NTR 정책 - 느긋한 아내 편 -
소리
Ghost
04/29 17251 73
[Doji Ro] 앗군 싫어!
동인
ㅇㅇ
04/29 45760 178
[Homunculus] 봄을 쫒다
동인
ㅇㅇ
04/29 31169 113
오타쿠인 내가 일진 갸루와 사귀기까지의 이야기 ONA 1화
영상
argoklarke
04/29 30861 185
루시아 - 새로운 발견 (ZZZ)
영상
브레머튼
04/29 21531 91
[요청복구] 미궁도시 어사일럼 Motion Anime
영상
argoklarke
04/29 25348 111
[복구] 복구 영상 5개
영상
브레머튼
04/29 23804 75
AI, 셀레스포니아) 아마네가 운동할 뿐인 짤
야짤
miso5
04/29 18640 64
Church of Disires 손번역 착수
작업현황
sesv3030
04/29 9797 24
직번)[Gonza] 옆집 유부녀(35) 〜나이 차이 따위(상)〜
동인
dresss
04/29 27082 94
RJ01603799 프린세스 티처! ~세상 물정 모르는 공주님과 다소 쓰레기 같은 가정교사~ Ver 1.1
미번
제로콜라라이트
04/29 16420 67
[AI] 요즘 AI 성능을 알아보자
야짤
highblue
04/29 13248 19
스압] 암호화 게임파일 체크목록지
정보
katress
04/29 14018 19
야심한밤 메카미 시프티
영상
a27627142
04/29 30954 113
[직번][Nako sir][하드플] 내 성벽을 엉망진창으로 만들어 놓고 결혼하는 전섹파와 섹스 이야기
동인
qlkjrnd
04/29 61929 365
[구매보급,번역요청] RJ437704 교장이니까!
미번
wjdtpwls
04/29 13641 23
Omocha Shoujo Mugen Zecchou ni Naku | 완구소녀 무한절정에 울다
동인
yuoaijs
04/29 18167 66
[구매보급]섹스 전문가에게 섹스를 걸어버린 이야기
소리
이름뭐하지
04/29 17599 75
[AI번역] 미오쨩의 여름방학
번역
미식이네
04/29 40599 132
애들 이름은 긴데 이름표 공간은 좁디좁다...이미지 번역 다듬는 중
작업현황
argoklarke
04/29 9265 16
90일) RJ01311424 [Akari Blast!] 후타리나X익스플로러-번역3차.rar
복구
ㅇㅇ
04/29 20524 63
(노모) [Tamabon] 어른이 되는 여름
동인
04/29 58341 324
【ハメ撮り動画追加チャンス?!】おちんぽ係に任命します!【5時間半】【ご入学おめでとうセット
소리
정실은스쿨드
04/29 14765 96
길다,스압] json파일 암호화된 이유를 찾다가 알아낸 정보
정보
katress
04/29 14586 32
[구매보급][번역요청] RJ01544753 モブ顔でドスケベボディなおねえちゃん 모브 얼굴인데 엄청 야한 몸매의 누나
미번
Liye
04/29 12865 45