kone
소미소프트

소미소프트

댓글 최신순/등록순 버튼 분리(댓글 새로고침) 스크립트

05/31/2025, 07:46:47
유틸
1783 views · 2 likes

챗지피티로 만든 스크립트입니다 문제시 글삭함

오류생기면 삭제 추천


최신순/등록순 버튼을 분리하는 이유

-버튼을 누르면 댓글이 새로고침 되면서 최신순/등록순으로 바뀌는데 나는 새로고침만 하고싶기 때문!

(사실 버튼 연속으로 두번 누르면 되니깐 없어도 되는 스크립트..)


그래서 작동 원리도

최신순 > 최신순 버튼 클릭: 등록순으로 일시 전환 > 다시 최신순으로 복귀함

최신순 > 등록순 버튼 클릭: 그냥 등록순으로 전환됨

등록순 > 등록순 버튼 클릭: 최신순으로 일시 전환 > 다시 등록순으로 복귀함

등록순 > 최신순 버튼 클릭: 그냥 최신순으로 전환됨


이런 원리임..

1

ㄴ원래 최신순/등록순 버튼


1

ㄴ스크립트로 분리된 최신순 버튼과 등록순 버튼





1
1

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


아래는 스크립트 입니다.

// ==UserScript==
// @name         kone.gg 댓글 정렬 버튼 분리
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  kone.gg의 원래 정렬 버튼 UI로 최신순/등록순 버튼을 분리해서 추가
// @match        https://kone.gg/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    function getOriginalSortButton() {
        const buttons = document.querySelectorAll('button[data-slot="button"]');
        return Array.from(buttons).find(btn =>
            btn.textContent.includes('최신순') || btn.textContent.includes('등록순')
        );
    }

    function clickToForceSort(targetSort) {
        const sortBtn = getOriginalSortButton();
        if (!sortBtn) return;

        const isAlreadyTarget = sortBtn.textContent.includes(targetSort);
        const oppositeSort = targetSort === '최신순' ? '등록순' : '최신순';

        if (isAlreadyTarget) {
            sortBtn.click();
            setTimeout(() => {
                const newSortBtn = getOriginalSortButton();
                if (newSortBtn) newSortBtn.click();
            }, 150);
        } else {
            sortBtn.click();
        }
    }

    function createSortBtn(id, label, iconPathD, targetSort) {
        const btn = document.createElement('button');
        btn.id = id;
        btn.setAttribute('data-slot', 'button');
        btn.className = `
            border-0 justify-center whitespace-nowrap text-sm font-medium transition-all
            disabled:pointer-events-none disabled:opacity-50
            [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4
            shrink-0 [&_svg]:shrink-0 outline-none
            aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40
            aria-invalid:border-destructive hover:bg-accent dark:hover:bg-accent/50
            h-8 px-3 rounded-full -[>svg]:px-2.5 flex items-center gap-1.5
            text-zinc-600 hover:text-zinc-900 dark:text-zinc-400 dark:hover:text-zinc-200 cursor-pointer
        `.trim();

        const svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
        svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
        svg.setAttribute('width', '24');
        svg.setAttribute('height', '24');
        svg.setAttribute('viewBox', '0 0 24 24');
        svg.setAttribute('fill', 'none');
        svg.setAttribute('stroke', 'currentColor');
        svg.setAttribute('stroke-width', '2');
        svg.setAttribute('stroke-linecap', 'round');
        svg.setAttribute('stroke-linejoin', 'round');
        svg.classList.add('lucide', 'size-4');
        const path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
        path.setAttribute('d', iconPathD);
        svg.appendChild(path);

        btn.appendChild(svg);
        btn.appendChild(document.createTextNode(` ${label}`));
        btn.style.marginLeft = '8px';

        btn.addEventListener('click', () => {
            clickToForceSort(targetSort);
        });

        return btn;
    }

    function addSortButtons() {
        const commentHeader = document.querySelector('.p-4.md\\:px-6.flex.justify-between.items-center');
        if (!commentHeader) return;

        const leftSection = commentHeader.querySelector('.flex.gap-4.items-center');
        if (!leftSection) return;

        if (document.querySelector('#sort-newest-btn')) return;

        // 최신순 (화살표 아래로)
        const newestPath = "m3 16 4 4 4-4 M7 20V4 M11 4h10 M11 8h7 M11 12h4";
        const newestBtn = createSortBtn('sort-newest-btn', '최신순', newestPath, '최신순');

        // 등록순 (화살표 위로)
        const oldestPath = "m3 8 4-4 4 4 M7 4v16 M11 12h4 M11 16h7 M11 20h10";
        const oldestBtn = createSortBtn('sort-oldest-btn', '등록순', oldestPath, '등록순');

        leftSection.appendChild(newestBtn);
        leftSection.appendChild(oldestBtn);

        const original = getOriginalSortButton();
        if (original) original.style.display = 'none';
    }

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

    addSortButtons();
})();
2
4 comments
유틸은 언제나 개추야
진짜 쓸데없는 스크립튼데 ㄳㄳ..
05/31/25
어.. 그럼 기존 order 버튼은 그냥 냅두고 새로고침 버튼만 추가하면 대는거 아닌가
05/31/25 Edited 05/31/25
이것저것 만져봤는데 제 능력부족으로 댓글창만 새로고침만 하는건 안되더라구요 ㅠㅠ 최신순/등록순 버튼으로 댓글창 새로고침해야됨..
ai,청아,버튜버)코코로쨩 마이크로비키니
야짤
gpsel157
05/12 19547 26
이전에 가지고 있던 것 복구(10개)
복구
ziririri123
05/12 51678 169
[LYCO]리오&토키 처벌쇼
영상
ㅇㅇ
05/12 35613 83
古い(furui) 모음
영상
쀏꿱이
05/12 35826 159
ガナイショウ(가나이쇼우) 26.3. 눈나
야짤
kuuki
05/12 10825 41
회복술사의 재시작 서비스씬 모음
영상
고죠/센세
05/12 42222 206
[90일복구] 요청자료 5종
복구
Ghost
05/12 42281 110
[AI번역/초반검수] 쾌락의 저주(The Curse of Pleasure) v1.0
번역
weller703
05/12 72803 245
대리업로드 번역게임 6개
번역
미스터장
05/12 77271 246
[한글자막] [NightHawk(ナイトホーク)] incest village インセストヴィレッジ
영상
lximiad
05/12 30537 73
Ai번역) 여동생의 친구가 동경하던 G컵 갸루 코스플레이어였던 이야기 2
동인
customer121
05/12 29665 180
[구매보급] [버전업] RJ01452526 이상적인 히키코모리 생활 ~부녀의 꽁냥꽁냥 동거~ 1.1.6 26.05.12 "26.05.22(수정)"
번역
gkqisq
05/12 35018 174
[GIF] (후타, 보추, 수?간 포함) QW1wbGVjdGVk gif 모음집
야짤
hannanas
05/12 14651 47
AI, 셀레스포니아) 아마네 데이트편
야짤
miso5
05/12 11908 112
[버전업] [구매보급] RJ01588884 이노센트 도터 v1.1.1
미번
gkqisq
05/12 11597 45
QW1wbGVjdGVk 모음집 없데이트 알림
영상
hannanas
05/12 23938 81
[구매보급] RJ432000 성처리가 있는 학교 2023.04.26
미번
gkqisq
05/12 17180 35
(요청복구, 미검수) Cursed Armor 2
복구
zeri1590
05/12 18210 49
[미번] 오네쇼타 마을의 엣치한 여름방학 스팀 노모 일어판
미번
미스터장
05/12 10044 44
[atahuta] 발정기 한창 오나홀 씨.
동인
ㅇㅇ
05/12 42966 276
[Croriin/노모] 마녀가 아끼는 것
동인
ㅇㅇ
05/12 25370 160
감각 차단 암컷화 트랩! 손번역 및 노모작업 현황
작업현황
미스터장
05/12 12406 36
[ai번역=오오토리 마히로] 나의 이세계 하렘 1
동인
mybest
05/12 17081 42
[유부녀/레이프/밀프쇼타/서양](보루토) 히나타의 숨겨진 욕망
영상
Ghost
05/12 29568 117
[한글자막] 미시 여교사, 쇼타 사정 도와주기 (上편)
영상
실루엣21
05/12 18592 97
QW1wbGVjdGVk 블렌더 파일 공유 첫번째 9.74GB
유틸
hannanas
05/12 15629 21
[bWlyYWNhbg== / RJ01602232] 전생 용사가 즉시 함락 마법으로 이세계 무쌍!! [전편]
영상
yozuna
05/12 26859 178
요몽원 이미지 번역하면 수요 있나?
일반
losress
05/12 6025 55
미번) [airu] 폭유에 엉덩이가 커다란 흑장발 무녀씨에게 사랑이 무거운 개변태봉사로 쥐어짜인다
동인
hun99
05/12 14122 26
[AI/이미지번역] Esurience 일본풍 미인 소꿉친구와 숨겨진 갈망
번역
미식이네
05/12 41476 168