kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
4101 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
오 신기하다
[nihon dandy] 노출 테스트 플레이 2
동인
bender
05/09 8237 25
[AI 번역][Hiyashi Makura] 속・여사친과 보내는 느긋하고 꽁냥거리는 야릇한 휴일
동인
crazyerdog
05/09 14755 54
코캇 명조 히유키 프리셋 2종류
유틸
pst0025
05/09 15995 24
[AI 번역][Hiyashi Makura] 여사친과 보내는 느긋하고 꽁냥거리는 야릇한 휴일
동인
crazyerdog
05/09 20113 62
[구매보급] [미번] RJ01280169 외 1
영상
gkqisq
05/09 20256 113
[AI + 발] 성행위 실습은 아빠와 1.02 [RJ01387786] 한글
번역
fbeurb1290
05/09 49675 190
[AI 번역][Hiyashi Makura] 폭설이 내리던 밤 이불속에서 알바 여자애들이 밀착해서 데워주는 섹스를 해주었다.
동인
crazyerdog
05/09 19564 70
[AI 번역][Hiyashi Makura] 새로운 성교육이 시작돼서 같은 반인 하세가와 양과 5일간에 걸쳐 진한 섹스를 하게되었다
동인
crazyerdog
05/09 7801 77
[AI 번역][Hiyashi Makura] 자는동안 몸을 마음대로 쓰게해주는 반 친구 모리타 양
동인
crazyerdog
05/09 15945 91
[구매보급/미번/이종간] Segment Lumina -奴○少女と闘技場- 1.05
미번
루파조아
05/09 12656 38
cm9pcm9pbW1k 모음집 업데이트 알림
영상
hannanas
05/09 23770 65
RJ290576 음마의 트랩 아일랜드 1.03 노모
복구
물크스
05/09 42750 112
[AI번역/NTR주의] 요바이 게임
번역
weller703
05/09 46639 156
90일, 2.13 GB) RJ290576 음마의 트랩 아일랜드 1.03.7z + 노모 미번
복구
ㅇㅇ
05/09 19700 37
직번) [Kouchaya (Ootsuka Kotora)] 담임의 메이드가 되어버린 흑갸루 3
동인
kaloski
05/09 13081 82
[기계후킹-AI번역/촉수이종] RJ01588859 광기의 파도 소리 ~J○ 이종간 호러 독백 ADV~ ver.1.0.1
번역
isang
05/09 45047 185
[미번] [구매 보급] [번역 요청] 아모르 마법학원
미번
chalyboy23
05/09 11812 22
[한글자막] 미시 여교사 타락 NTR (下편)
영상
실루엣21
05/09 28121 154
청아) 아오이쨩, 크롬쨩 (PossumMachine)
동인
rapbit
05/09 19768 71
3Mura 0508
영상
참새
05/09 24172 101
청아) 뽀삐의 교배 챌린지 (PossumMachine)
동인
rapbit
05/09 26779 74
직번]asada shinjin)마리피치착유플레이♡
동인
woo15
05/09 18909 65
[구매보급] [버전업] RJ01414102 이상한 형무소와 음욕의 지하 미궁 ~빈틈투성이인 나나의 H한 프리즌 브레이크~ 1.09
미번
gkqisq
05/09 19903 55
ai)내아내임
야짤
오곡아줌마
05/09 18416 43
[AI번역][RJ207127] 어서와! 미즈류케이 랜드 (패치파일만)
번역
호빵할배
05/09 45950 117
[kurihara kenshirou] SNS에서 남자인 줄 알았던 상대가 무뚝뚝하지만 마음대로 하게 해주는 키 큰 여자였던 이야기
동인
rellajoa
05/09 33879 241
청초한 말랑보○로리 인어는, 인간이 되는 대가로 아름다운 신음소리를 빼앗겨응오오호오아아아앗!~【음란 교미】
소리
이름뭐하지
05/09 12755 62
[airandou] 이웃 간 성교류 (청아)
동인
rellajoa
05/09 35195 116
[소드 아트 온라인](근친) 키리토 x 스구하
영상
Ghost
05/09 42967 209
[미번]나와 서큐버스 【逆レ○プバトルファックRPG】ぼくとサキュバス
미번
arknight
05/09 11467 60