kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
3992 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
오 신기하다
[ 복구요청 ]미스톨티아2
요청
jisuplayer
05/25 2528 1
혹시 이 게임 아시는 분..
질문
sldlslld
05/25 2702 0
[복구요청] RJ01423662 [게이] -직정진기-소년이 목욕탕에서 늘 받던 마사지를 받는 이야기
요청
sull00
05/25 2009 -1
[복구] c2hhbnRpYW54aWFvemhp 유품 모음집
영상
hannanas
05/25 17848 83
[복구 요청] 복수의 오크
요청
dungiduck
05/25 9170 1
ai 하츠네 미쿠) 야외노출방송하다가 걸려버렸다
야짤
ezmood
05/25 13139 93
던브 뱀파이어 성 어떻게 공략함?
질문
morisaga
05/25 1809 0
에로나오크<-이거 대존잼인데
일반
dayanghansicksaga
05/25 3035 0
[복구요청] [RJ282703] 출동! 전라풍기위원회
요청
응애누비
05/25 4631 0
보추, AI번역) [Green] 「SEMXONTER: Giant of the forest Bolguin」
동인
GGmen
05/25 11213 29
[구매보급/번역요청] ふたなり受験奮闘記~射精管理で名門大に受かるまで~ ver1.01
미번
tkdldhsms
05/25 9234 12
비월선행록 개조 오류
피드백
생각하는고래
05/25 1797 0
[미검수,기번,번역파일만] 던전 앤 브라이드v1.56 통합 모드v4.6+치트 - 수정1
번역
지나가던사람
05/25 42129 138
[구매보급, 번역요청] 新米美人OLを俺専用の淫乱女に!
미번
onlysalja
05/25 8766 28
[미번][번역요청]RJ01591409 구련휘정 퀄터 알루미네스 & 탄젤 EG 1.0.11
미번
루드라
05/25 4615 13
혼자 보내는 여름방학 둘 다 동시엔 못먹음?
질문
2h4sd5
05/25 1784 0
c2hhbnRpYW54aWFvemhp 유품 모음집 + 누락본 복구 요청합니다
요청
zadvoskoi
05/25 4919 1
ai)부서지는 여름색 사키누나(ntr)
야짤
saki123
05/25 7746 40
파딱이 주딱 자리를 넘보는구나
일반
kig01
05/25 1618 -4
요청복구 [RJ161939] 메이드 인 메이독 4.06 미번
미번
zadvoskoi
05/25 5644 12
dlsite 구경하는데 무슨 2만엔짜리 겜도 있네
일반
wilson
05/25 2397 0
의술사 첫 h씬 봤는데
후기 및 공략
paddackmon
05/25 2686 1
수간) 와우 돌고래...움짤..와우
야짤
drogba
05/25 4643 9
망가 하나 찾습니다...
질문
monolail
05/25 1610 2
셀레스포니아 회상방 어디에요?
질문
nsmine
05/25 1848 0
님들 의술사 난이도 추천좀
질문
paddackmon
05/25 2287 0
[스포] 의술사 EX 엔딩 보면서 느낀거.
후기 및 공략
응애
05/25 2638 1
비월선행록 1회차 하는 중인데...
후기 및 공략
kiws1999
05/25 3351 1
[구매보급/자체한글] 악령기생
번역
msw7162
05/25 45889 240
니콜 & 츄츄족 (원신)
영상
브레머튼
05/25 18255 100