kone
소미소프트

소미소프트

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

05/31/2025, 08:06:09
유틸
2391 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
개추콘
유혹의 온천여행 2.0으로 업뎃햇네
일반
mansue
05/22 1862 6
[렌파이][자체제작] 유리키우기 0.5v (30일)
번역
하이호실버
05/22 69601 455
앞에서 이러고 있으면 어떻게 할 거임?
일반
duckuu12
05/22 3847 3
[요청복구] RJ01336951 마이(19) 사연있는 그라돌이 생본방 자궁까지 허락해버리는 음란 마스크녀 AI번역 버전
복구
sr037
05/22 28794 89
(수정)RJ406131 용기사 올리비아 ─ 편지의 섬의 전설─
복구
하이바라
05/22 21305 71
이 게임 지나치게 좌측으로 몰려있는데
질문
하이바라
05/22 3484 1
아줌마 속옷이랑 란제리랑 차이가 정확히 뭐지
질문
codegreen
05/22 3395 0
[복구] amazon 시리즈
복구
meruna00
05/22 20673 62
소르간테는 씬볼려면 무조건 회상방써야함?
질문
Kikio
05/22 5110 0
[aiue oka] Yumemiru Otome - 꿈꾸는 소녀 [p.254]
동인
mybest
05/22 16067 91
cm9pcm9pbW1k 모음집 업데이트 알림
영상
hannanas
05/22 11829 42
[Aiue Oka] 상식 개변 - 복수 최면 [p.264]
동인
mybest
05/22 25243 152
비타퀘2 왤케 꼴리지가 않지
일반
이승윤
05/22 2133 3
[구매보급][한국어 자막판]풍기 위원님, 복종하겠어요♪아가씨 후유카의 교칙위반 체벌 섹스♪
소리
이름뭐하지
05/22 15206 111
시발 시골의 돈 낚시 이거 조심하셈
후기 및 공략
flatune
05/22 5233 13
[5/22] 카스토리스 (스타레일)
영상
브레머튼
05/22 13978 87
정말 좋아했던 하나 짱이 해피버스 데이프 당한 날
동인
나나세마루
05/22 29914 64
커뮤 업로더를 대우해주는건 원작자보다 대단해서가 아닌데
일반
루미네순애
05/22 4338 12
Ai번역 최근부터 된거야?
질문
oimasage
05/22 2466 1
의술사 1.05 번역 서브퀘 번역 안된 것 같음
피드백
Noel
05/22 5113 2
[ai번역][Aiue Oka] Control Familiar [01-04] 패미콘+ 보너스 [p.191]
동인
mybest
05/22 26045 149
야겜들 제목 클리셰
일반
달려♂있어서♂좋아♥
05/22 2265 4
[복구] 장리 복구 영상 (명조)
영상
브레머튼
05/22 13384 49
26.05.28, 90일, 기번 파일만) RJ01626482 26.05.25_26.05.28 기번 姫騎士エレーナ-淫欲のダンジョンに囚われて-.7z
번역
ㅇㅇ
05/22 39465 137
[AI채색][노모화]피곤할 때에는 오나홀이 좋네
동인
powr963
05/22 25106 110
리나테스트 작가 신작 해피스쿨라이프 5월 블로그 (이미지 추가완료)
정보
beatrirz
05/22 4602 7
스포) 의술사 엔딩크레딧이 뜨긴떳는데 반쪽짜리 엔딩같아..
일반
미미쨩
05/22 1861 0
야겜 세이브 받는 곳 추천
정보
iciqog123
05/22 4213 11
[구매 보급]【한국어 자막판】 패배할 때마다 디버프가 풀리지 않게 되는 유두 애무 자위 서포트 감옥
소리
qkqhqkqh
05/22 16149 135
[요청복구] RJ01274832 역몽의 메나스피어
복구
시라스 아즈사
05/22 17783 46