kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
4066 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
오 신기하다
[Liyoosa] 불법 카지노에서 정체가 탄로나 농락당하는 여주인공3p
야짤
요요코코
05/05 20258 40
[hasebe souutsu] 접대아내 숙성 6화 팔라리스의 암소편
동인
ㅇㅇ
05/05 16085 53
[hasebe souutsu] 접대아내 숙성 5화 마조 자각편
동인
ㅇㅇ
05/05 11400 39
[hasebe souutsu] 접대아내 숙성 4화 노력과 변화편
동인
ㅇㅇ
05/05 7363 33
(청아,AI,GIF) {어린이날 기념} [Red] gura,saba
영상
ArIso
05/05 20123 91
[hasebe souutsu] 접대아내 숙성 3화 밤산책편
동인
ㅇㅇ
05/05 12545 33
[hasebe souutsu] 접대아내 숙성 2화 고정 절정편
동인
ㅇㅇ
05/05 13757 37
[hasebe souutsu] 접대 아내 숙성 1화
동인
ㅇㅇ
05/05 14761 45
[기번 후 손번역] RJ01595054 이케부쿠로 섹스로이드 여학원
번역
jaaxmaster
05/05 78035 320
[한글자막] (전생슬) 슈나와 시온에게 쭉쭉~ 쥐어 짜여지는 고부타 영상
영상
실루엣21
05/05 26616 185
[구매보급]절대 굴복 오호 목소리 절정! 최강 메○가키 음마 오○코고문부터 시작
소리
이름뭐하지
05/05 9132 47
[Liyoosa] 횡령을 들켜 상사가 시키는 대로 하게 되는 경리
동인
요요코코
05/05 36562 218
지금까지 한 ntl 게임들 개인적 후기
후기 및 공략
헤비레인
05/05 16736 63
음모있음) [Gujira 4 Gou] 마구 빼달라고 하는 입원성활
동인
카오스
05/05 21731 150
[미번/번역요청]세계 이사 센터에 어서오세요 : 여자아이한테 역 헌팅 당하는게 당연한 세계 EX
동인
아돌
05/05 14902 18
아이 낳는 섬 + ai번역 두개
동인
yaoino
05/05 24722 70
청아) 페로페로☆트윈스 1.2
복구
rapbit
05/05 21631 73
청아) 작별의 체크리스트 RABPIT MOD 0.3.1 apk
rapbit
05/05 24608 45
비월선행록 이거 번역 해볼까
일반
로리망코다이스키
05/05 7169 75
(코이카츠) 버튜버 프리셋 공유
유틸
pst0025
05/05 17144 79
[버전업 알림] 음최도시 휴프노즘 1.03 적용함
번역
saika
05/05 35659 149
[보이스코믹][구매보급][한] 36
소리
책먹는망아지
05/05 21834 150
직번)[단행본][Minamida Usuke] 자지 패배 오만 사모님
동인
qlalfsla
05/05 18284 80
직번]kosuke haruhito)만끽중 5
동인
woo15
05/05 12857 69
청아, AI번역) [직번] 나와 미오의 사랑이야기 (Kagali Loka)
동인
rapbit
05/05 8818 29
AI) renbocloud 미번/번역요청 이로하 1부
동인
RMillet
05/05 13563 25
ai번역 손식질) 억압당했던 학생회 당당한 여자가 평범한 남자에게 길들여 질때까지 어머니를 인질로 원치않는 섹스로 점점 타락한다
동인
1Q2W3E4R
05/05 24207 134
Dorozumi)아양 떠는 구애 섹스
동인
woo15
05/05 22717 111
[Punpunn] 페른 NTR
동인
부히히힛
05/05 31484 165
[구매보급/버전업] RJ01527385 백작 저택의 사건부
미번
rubberduck
05/05 7900 35