kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
4055 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번역] 복음의 아파슬(노모 이식, 전개방 동봉, 미검수) +번외편
번역
봇치
05/03 46554 273
[구매보급] [Pigtarotaro] 라이덴 쇼군의 야한 의식 (雷〇将軍のえっちな儀式)
영상
ikinokoru
05/03 41028 188
[poko●●●] 지휘관에게 비밀로 바람 원정 다이호 (指揮官にナイショの浮気遠征大鳳)
영상
ikinokoru
05/03 21386 117
[Agetama] 이얼싼쓰 좋다! 사정해라💜 -완전판- (Fate/Grand Order)
동인
ㅇㅇ
05/03 28142 125
[번역요청] マンチニールHz (ver 1.01)
미번
라이오드
05/03 8452 25
[요청복구] 고백게임 (AI번역, 후일담)
복구
dk041633
05/03 21467 61
[번역]성녀님의 숨겨진 음란함이 화근이 되다 1화
동인
마법우엉
05/03 37473 178
시니시스타2 공식 모드로 1편 주인공 모드 추가해주네
정보
semin
05/03 13833 23
[스팀] 3개의 게임이 발매일이 확정되었네요
정보
kkkkkk0909
05/03 10775 19
Maya's Mission [v0.7] 재업로드
미번
당끼뾰이
05/03 8396 42
북미-스쿨데이즈 (SCHOOLDAYS) H신(자막X) 3시간 25분
영상
Ak454647
05/03 20622 98
90일) RJ269944 Flash Cycling Ride 2 v1.30.7z
복구
ㅇㅇ
05/03 12742 34
청아)오랫만에 프메1을 했음
야짤
sweetroll
05/03 7766 18
[요청복구] 몽상과 심전의 카타라아타나토스 1.07 기번+이미지
복구
dk041633
05/03 29359 76
d2lua3R3aW4 모음집 업데이트 알림
영상
hannanas
05/03 16101 57
[기번/노모/세이브포함] IV?AV!! 1 ver.1.2.1
복구
ilillilllilil
05/03 20123 67
[미번][번역요청] 유혹 음란 마을
미번
sbsb4519
05/03 12187 67
AI, 셀레스포니아) 타락한 셀레스포니아 3
야짤
miso5
05/03 15216 86
SAO Invisible Trap vβ6 [ai번역,제미나이]
번역
pareon
05/03 56294 184
[패치만] 모두의 유방육성 아카데미 3차수정
번역
argoklarke
05/03 33054 147
90일) RJ233542 Flash camping v1.33 번역기 개선판.7z
복구
ㅇㅇ
05/03 13774 43
(재업+노모화) [gagarin kichi] 네토라레 당한 폭유금발아내 엘레나 1 후일담
동인
kason
05/03 21375 67
직번) [Anteiru] 제자의 애무에 비참하게 가버리는 수영부 선생님 (Part 1)
동인
BlackWing
05/03 23331 76
(번역)우유 생산 특이점에 붙잡힌 왕
동인
멕무
05/03 23001 86
사이클론 신작 ntr겜 Ci-en에 올라온 정보
정보
kjalar
05/03 8932 52
[구매보급 번역요청]生意気後輩と放課後Hバトル?!
미번
ridesa
05/03 12525 32
청아, AI번역) [직번] 쾌락 고문 (OKINA)
동인
rapbit
05/03 16168 53
[버전업] [미번] [구매보급] RJ01138122 다락방의 잠자는 공주 미번_1.45.2? 2026.05.02 버전
미번
gkqisq
05/03 6208 29
연휴 기념) 청아? 순애? 욕실) 야설 딸친구 3화
창작
머겅머겅
05/03 11017 17
(노모화) [gagarin kichi] 네토라레 당한 폭유소꿉친구 유부녀 아카네 후일담
동인
kason
05/03 19579 62