kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
3892 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
오 신기하다
AI) 무표정쨩 잡다한거
야짤
miso5
04/22 11851 59
(구매보급/자막판) 파탄절? 축하 동음 하나
소리
Ghost
04/22 15177 62
AI) 같은 배경에 여러 섹스 장면 넣는 방법 설명
야짤
miso5
04/22 10951 44
한번 더 과거글 찾아가서 G랄하면
일반
pst0025
04/22 3023 15
[미번/구매보급] RJ01588859 광기의 파도 소리 ~J○ 이종간 호러 독백 ADV~
미번
ArIso
04/22 20951 89
[보이스코믹][구매보급][한] 하게 해주는 근처 아이 EX
소리
책먹는망아지
04/22 17613 93
[AI번역] NTR전선/무한 네토라레 지옥
번역
봇치
04/22 63767 147
[Takota Konu] 여신 같은 여자친구
동인
ㅇㅇ
04/22 39314 183
天平キツネ EX25 은?랑
영상
참새
04/22 26036 94
[AI번역][미검수]퇴마사 헤레인과 악마들의 동굴_v1.01
번역
Treants
04/22 45719 152
은랑 - 뉴 게임 플러스 (스타레일)
영상
브레머튼
04/22 22242 109
[직번][Nakakazu] 깨끗하고 건강한 올바른 섹스
동인
qlkjrnd
04/22 33982 118
[구매보급][한국어 자막판][모녀덮밥]모녀의 금기에 젖은 비밀스런 타락 #보쌈 3P #처녀상실 #음란한 엄마
소리
이름뭐하지
04/22 15664 140
(코이카츠) - 최신 프리셋 일부 공유 [v2]
유틸
pst0025
04/22 10920 45
개껄리는데 번역 안된 것들 모음 (esuke 2, kanroame2)
동인
posan
04/22 20471 39
악령퇴산! 도와줘~! 색신님 노모자이크 패치
번역
stargaze
04/22 48400 202
[구매보급]존댓말○리 용사의 이세계 전생담 ~츤데레 용사와 달콤한 오호동거로 사랑을 키운 이야기~
소리
이름뭐하지
04/22 11283 53
[미번/번역요청]나만의, 선생님
동인
아돌
04/22 6310 17
프리렌 & 페른 갱뱅 short 영상 및 기타 루프 영상 2개
영상
브레머튼
04/22 43510 90
상업이용도 가능한 R18 음성 소재 1~12
소리
아라고나이트
04/22 9594 60
순애 LOVE✨숨소리✨가까운 거리✨작은 연하 천재 소녀의 사랑해…♡사랑해…♡키스✦시코시코✦페로페로→초사랑받는 섹스♡♡
소리
9ya
04/22 10366 77
전령희 레이시아 서클 신작진행28
정보
마검사리네최고
04/22 10475 20
청아) 나는 이런 투박한 그림체가 의외로 꼴림
야짤
루이즈 프랑소와즈
04/22 23128 41
미번, 번역요청-[KNUCKLE HEAD (Shomu)]-빼앗긴 유부녀 총집편
동인
netorare6974
04/22 15988 26
[대충 채색?] 안돼! 동거 라이프
복구
ddd86
04/22 45026 273
[konomi_mamura] 성교육 방송 「누나랑 할 수 있을까」
동인
agnet666
04/22 31369 69
[AI번역]온천 여관의 파이즈리 괴이 수정1
번역
솔라셀
04/22 38471 113
[Ai 후원] 세레나 [66p]
야짤
Ghost
04/22 12426 21
직번)[Shio Coffee] 출장 서비스를 불렀더니 다 들어주는 왕자님이 온 이야기
동인
qlalfsla
04/22 34855 226
orgy dice 1.0.3 업데이트 작업중입니다
작업현황
03030405
04/22 8044 25