kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
3896 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
오 신기하다
[직번] [remu] 조교 프로페셔널 ~육변기가게의 극의~
동인
maha1004
05/27 13552 61
미야비 & 외눈박이 (ZZZ)
영상
브레머튼
05/27 9938 69
비디오 가게에 방문한 의현 (ZZZ)
영상
브레머튼
05/27 8563 67
ai, 벽람) 아타고와 러브러브 질내사정 섹스 라이프
야짤
kjh9304
05/27 4331 73
여기에 자작게임 올려도 되나요?
질문
곰돌123
05/27 5187 50
특급 마술사 미리아 어디서나 이용가능한 참회 구멍
동인
Yuzu
05/27 20113 79
【❤️전편 아이 만들기 질내사정 에치❤️】 달콤러브 아이 만들기 메이드❤️ 무척 일편단심에 헌신적인 당신만의 메이드와 아이 만들기 보지 에치를 하는 호화로운 봉사 라이프❤️
소리
키리안
05/26 5488 72
AI (하드:능욕, 보태, 출산 주의!) 개인적으로 좋아하는 야겜 엔딩
야짤
진한농도
05/26 8284 25
AI번역, Shift) 우리들! 성교육 위원회 만화판
동인
sexe1
05/26 25136 98
[요청복구] Cage of Tentacles v1.3.0
복구
vhskorea
05/26 9515 30
[요청복구] 퀸즈 - 대전형 카지노 솔리테어 RJ01248973
복구
nue
05/26 9869 27
(이미지 번역 파일만) [RJ01619107] 소와 양의 잡화점 (牛と羊の雑貨屋さん)
번역
5dk2io1
05/26 22029 161
아스트라 & 이블린의 특별 무대 [feat. 와이즈 & 후타 벨]
영상
브레머튼
05/26 12903 75
청아,업뎃) 세상 모르는 단또년 1.04
미번
쩝냡
05/26 8420 42
[구매보급] [전편 카섹스 × 달콤신음] "거긴 진짜 안 된다니까아♡" 밀실 · 조교 · 카섹스❗ JK마스코드 미소녀가 철퍽철퍽 조교당해 마조 애완동물로 타락하는 이야기♡
소리
미식이네
05/26 7109 62
[5/26] 부티 바운스 비치스 Full 영상
영상
브레머튼
05/26 14721 117
와 드디어 봤다 카린 해피엔딩
후기 및 공략
rmfjrmfjgkek
05/26 5001 25
[기번/이지트랜스 필요/패치만] 포레스티아 1.41 + 음성 DLC
번역
123441352
05/26 21312 101
[구매보급][1편+2편]불로불사의 "오니공주"와 " 여우신"은 당신 전용 도M 여친
소리
이름뭐하지
05/26 6909 61
래빗홀 밐쿠
영상
yeondooooo
05/26 20056 107
Doragon74-빼앗긴 유부녀 하나코씨
동인
k8625
05/26 25149 163
Doragon74-나의 서포터즈 아카데미아
동인
k8625
05/26 22449 118
[AI번역] [kobaji] leveling unleash (히로아카)
동인
초보역식자
05/26 9826 35
[구매보급] [자막] RJ01339397
소리
puella
05/26 7315 74
Doragon74-김쭈쭈 시리즈
동인
k8625
05/26 20533 77
[Yuzuri Ai] L컵 여자대학생 20cm 초극태O지로 동인AV데뷔 1, 2
동인
1uF
05/26 19284 95
직번) [Akai Condor] 노예 시장의 실태 ~도쿄 빅사이트에 실존하는 현대 일본의 변태적 어둠~
동인
qlalfsla
05/26 17881 91
[Natsu No Oyatsu] 엄마의 잔향
동인
1uF
05/26 10057 26
[5/25] 신춘특집 1부 (디퍼런스 버전)
영상
브레머튼
05/26 10988 72
Yakitomato-구직 실패한 서큐버스씨를 주웠습니다
동인
k8625
05/26 12204 62