kone
소미소프트

소미소프트

유저스크립트 공유(업데이트250531)

05/31/2025, 12:35:43
유틸
4085 views · 2 likes

기능 1: 코네 메인 페이지 설명 펼치기/접기 기능 ( 모바일에 있길래 PC에서도 동작하게 수정)

1
1

기능2: 댓글창 좌클릭 잠금 버튼
댓글창에서 복사하거나 드래그하려고할때 대댓글창으로 자꾸 넘어가서 추천/비추천 우측에 자물쇠 버튼이 개별적으로 적용되어

기본적으로는 클릭시에 대댓글이 열리지않음, 자물쇠를 풀면 좌클릭 한번에 대댓글이 열림

1


// ==UserScript==
// @name         코네 유틸 
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  kone.gg 잠금버튼으로 답글 토글 (켜기/끄기): 기본적으로 댓글 클릭시 답글 안나오도록 & 메인페이지 토글 (접기/펼치기): 기본 접어두기
// @author       cloud67p
// @match        https://kone.gg/*
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';

    /***** [1] 댓글 관련 기능 *****/

    /****댓글 요소(commentEl) 옆에 잠금/해제 버튼을 추가하는 함수****/
    function addToggleButton(commentEl) {
        // 이미 버튼이 붙어 있으면 중복 추가하지 않기
        if (commentEl.querySelector('.reply-toggle-btn')) return;

        const btn = document.createElement('button');
        btn.textContent = '🔒';
        btn.classList.add('reply-toggle-btn');

        // 스타일 조정 (필요에 따라 위치/크기 바꿔도 무방)
        btn.style.marginLeft = '8px';
        btn.style.fontSize = '14px';
        btn.style.cursor = 'pointer';
        btn.style.background = 'transparent';
        btn.style.border = 'none';

        // 클릭 시 data-reply-enabled 토글 및 아이콘 변경
        btn.addEventListener('click', function(e) {
            e.stopPropagation();
            e.preventDefault();

            const enabled = commentEl.dataset.replyEnabled === 'true';
            if (enabled) {
                commentEl.dataset.replyEnabled = 'false';
                btn.textContent = '🔒';
            } else {
                commentEl.dataset.replyEnabled = 'true';
                btn.textContent = '🔓';
            }
        });

        // 댓글 엘리먼트 마지막 자식으로 버튼 붙이기
        commentEl.appendChild(btn);
    }

    function findReplyWrapper(commentEl) {
        const parentContainer = commentEl.closest('div.relative.pl-4.py-1\\.5');
        if (!parentContainer) {
            return null;
        }
        const sibling = parentContainer.nextElementSibling;
        if (!sibling) return null;
        return sibling.querySelector('#comment_write') ? sibling : null;
    }

    /**
     * 특정 댓글(commentEl)을 왼쪽 클릭했을 때,
     * data-reply-enabled="true" 상태가 아니면 원래 동작(대댓글창 열기)을 차단합니다.
     * 다만, 클릭된 요소가 버튼 또는 버튼 내부라면 차단하지 않습니다.
     */
    function disableClick(commentEl) {
        commentEl.addEventListener('click', function(e) {
            // 잠금 상태일 때만 처리
            if (commentEl.dataset.replyEnabled !== 'true') {
                // 클릭된 요소가 button 태그이거나, button의 자손인 경우—버튼 클릭은 허용
                if (e.target.closest('button')) {
                    return;
                }
                // 그 외(예: 댓글 텍스트 또는 빈 공간 클릭)는 차단
                e.stopPropagation();
                e.preventDefault();
            }
        });
    }

    /**
     * 한 댓글(commentEl)에 대해:
     * 1) 왼쪽 클릭 제한 (disableClick)
     * 2) 우클릭(contextmenu) 시 data-reply-enabled 속성을 토글 (true ↔ false)
     * 3) 댓글 옆에 잠금/해제 버튼 추가
     * 4) 대댓글창의 “취소” 버튼을 눌러도 대댓글창이 닫히도록 연결
     */
    function patchComment(commentEl) {
        // 이미 처리된 댓글이면 패스
        if (commentEl.dataset.replyPatched === 'true') {
            return;
        }
        commentEl.dataset.replyPatched = 'true';

        // 1) 왼쪽 클릭 제한
        disableClick(commentEl);

        // 2) 댓글 옆에 잠금/해제 버튼 추가
        addToggleButton(commentEl);

        // 3) 우클릭(contextmenu) 시 토글 로직 (기존에 있던 코드)
        commentEl.addEventListener('contextmenu', function(e) {
            e.preventDefault();
            e.stopPropagation();

            if (commentEl.dataset.replyEnabled === 'true') {
                commentEl.dataset.replyEnabled = 'false';
            } else {
                commentEl.dataset.replyEnabled = 'true';
            }
        });

        // 4) 대댓글창 “취소” 버튼 클릭 시 wrapper 닫기 (기존 코드)
        const wrapper = findReplyWrapper(commentEl);
        if (wrapper) {
            Array.from(wrapper.querySelectorAll('button')).forEach(btn => {
                if (btn.textContent.trim() === '취소') {
                    btn.addEventListener('click', function(ev) {
                        ev.stopPropagation();
                        ev.preventDefault();
                        wrapper.style.display = 'none';
                    });
                }
            });
        }
    }

    /**
     * 페이지 내 모든 댓글을 찾아 patchComment 실행
     */
    function patchAllComments() {
        document.querySelectorAll('.group\\/comment').forEach(patchComment);
    }

    /**
     * 댓글이 동적으로 추가/삭제될 때마다 patchAllComments 재실행
     */
    const observer = new MutationObserver(() => {
        patchAllComments();
    });
    observer.observe(document.body, { childList: true, subtree: true });

    // 초기 실행 (DOMContentLoaded 이후)
    if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', patchAllComments);
    } else {
        patchAllComments();
    }

    /***** [2] 환영 메시지 토글 복원 기능 *****/

    const esc = cls => cls.replace(/:/g, '\\:');

    function fixToggle() {
        document.querySelectorAll(`.overflow-hidden.max-h-32.${esc('md:max-h-none')}`)
            .forEach(el => el.classList.remove('md:max-h-none'));

        document.querySelectorAll(`button.${esc('md:hidden')}`)
            .forEach(btn => btn.classList.remove('md:hidden'));
    }

    fixToggle();

    const toggleObserver = new MutationObserver(fixToggle);
    toggleObserver.observe(document.documentElement, { childList: true, subtree: true });
})();
2
2 comments
05/31/25 Edited 05/31/25
추천, 수정,삭제도 우클릭 제한이 걸려있는 것을 확인하여 수정했습니다 현재 댓글을 좌클릭해도 답글 기능이 제한되어 페이지 위치조정등이 비활성화 되어있습니다. 각 댓글 영역의 우측상단 좌물쇠 버튼을 클릭하여 원래의 기능( 댓글 클릭 답글 및 페이지 위치조정 )이 활성화됩니다
05/31/25
오 신기하다
[RJ01235645] 도스케베 ○○ 시리즈
소리
hun99
05/11 9990 50
[RJ01225102] 짓궃은 오니선배 시리즈
소리
hun99
05/11 8640 52
요청복구) [RJ01233326] 쥬인님 죠아 갸루메이드 시리즈
소리
hun99
05/11 9438 53
태그참조)Mgister작가 2019~2026.5
야짤
smpeopleisgone
05/11 17479 19
(요청복구) 여친갱생게임 -엣치한 장난감 전부 써보자- 손번역+이미지번역
복구
sinryeong
05/10 30412 81
ai, 찢) VVIP가 되어 리나를 지명 하고 잔뜩 섹스했다
야짤
kjh9304
05/10 15734 109
자체한글, 자체번역 야겜 18개 뭉탱이
번역
미스터장
05/10 109442 562
[버전업 알림] 드래곤 블러드 2.12(+DLC1 1.03) 이미지 번역 업데이트
번역
joyed47106
05/10 54740 241
90일) 2. RJ137267 ROBF S4U v1.0. 개선 26.05.11.7z
복구
ㅇㅇ
05/10 24799 47
하루돌 매니저 Vol.18 ~ 스카우트와 다양한 구현 ~
정보
라임무르
05/10 9396 29
아이돌 사무소 경영 시뮬레이터 "하루돌 매니저"
정보
라임무르
05/10 22754 54
[ai번역,미검수,NTR,QOS] [AI 작품 Renbocloud] 유우카,키사키,세이아,이로하,아미야
동인
radori4141
05/10 41698 105
[AI + 발] RJ01307385 - 야간 버스 치한 시뮬레이션 1.01 한글(버그 수정 함 + 30일로 수정)
번역
fbeurb1290
05/10 58101 348
미번) 동생의 처녀 받아가줄래
동인
kjalar
05/10 20002 27
[기계번역]복구 6종
복구
브라더스
05/10 41899 120
[자체번역] 검은 유원지 ver.1.1 (22.06.19)
번역
미스터장
05/10 50665 105
존재감 옅은 여동생 H씬
영상
고죠/센세
05/10 56108 215
AI) 도트 야겜 스타일 야짤
야짤
아즈칼
05/10 19817 31
[미번][번역요청] 종말의 얼터에고이즘 v1.0.7 + dlc
미번
qkrdpshr4709
05/10 12544 70
re sister 여동생동거생활 DLC근황
정보
여동생킬러
05/10 12701 16
[구매보급/공식번역] RJ01605201 스즈카의 고민
번역
kimbada
05/10 44722 181
요청복구) RJ01148691 여고생 스파이 잠입수사 성 음술학원 1.04
복구
ajrnflxhdqkf
05/10 35664 34
[구매보급]【LIVE2D동영상】서브 리미널 세뇌 소녀·마인드 컨트롤 걸
소리
arahashi
05/10 10948 55
[RJ01562540][AI 자막만 Part 1 ~ 6] 응석받이 꽃 기린 ~석홍류~
소리
creatine
05/10 12621 56
[구매보급][버전업][번역요청] callgate 2.7.1
미번
kw123
05/10 16564 26
[구매보급]가출 소녀와 성 처리 담당 [오호 목소리]
소리
이름뭐하지
05/10 11774 53
Tachibana Omina 모음집
동인
playthesean
05/10 22474 95
[DYTM] 수영장 감시 아르바이트
동인
카오스
05/10 23486 89
[보이스코믹][구매보급][한] 자지가 생겨버린 우등생짱, 친구랑 짝짓기
소리
vereeeev
05/10 16755 125
[bWlnMTViaXM=] 작가 붕괴스타레일 스파클 영상
영상
karatro
05/10 40088 142