kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
4001 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
오 신기하다
[복구요청] (흑백) 여동생 동거생활 판타지 DLC 2.0.1-손번역+노모 리텍
요청
klk365
05/24 2633 3
모바일은 비타퀘2 안되나
일반
ultima
05/24 1783 0
후원보급,Br@n)그레이짱 + 통합편집
영상
비밀봉투
05/24 13262 75
야겜 이름 질문좀
질문
minxjinx
05/24 1755 0
손신 이거 중간에 회복하는 지점은 없음??
일반
fwjfhqhdwdqfq
05/24 1825 0
나는 너무 재밌게한 야겜 아이와 악마와 음욕의 저주
후기 및 공략
fourdragonruler
05/24 5229 13
실비키우기 이거 걍 내 맘대로 소프트하게 플레이 하려는데
일반
lefrah3
05/24 1891 0
아크메시아 언팩해서 일본어 사전 다 따왔는데 필요한사람?
일반
움떡알림몬
05/24 1476 0
이게 왜 진짜 됨;
일반
ㅇㅇ
05/24 2387 1
역몽의 메나스피아 이거 괜찮네
일반
wilson
05/24 2512 0
발 좋아하는 소붕이들을 위한 씬 정리 (2)
후기 및 공략
인생좆망함
05/24 4260 5
Muru No Honbako 망가 이거 신작보다 충격받았네
일반
ackfk3
05/24 2183 0
상호작용 성능좋은 게임 추천 부탁드립니다
질문
freethemane
05/24 2767 0
RJ01119288 급 폭유+니플퍽 없을까요 고수님들
질문
igniss
05/24 3556 1
미번) 남친 있는 거유 알바 갸루와 실컷 섹스한 이야기3
동인
kjalar
05/24 9503 20
쾌락의 저주 (The Curse of Pleasure ) 이거 방향키 왜이럼?
질문
gyobepuresu
05/24 2464 0
재공유? 재배포 관련 질문 있습니다
질문
Seza
05/24 2390 4
AI 그록을 이용하여 캐릭터 만들어보기(스입주의)
야짤
uyajini
05/24 4838 10
[복구요청] 나이트 테일 ナイトテール
요청
kokominee
05/24 2039 0
저속한 몽상 (Vulgar Reverie) 후기
후기 및 공략
이카니티
05/24 3051 2
[미번][이종간][촉수][변형] 감염기록(RJ376909), If.(RJ01075511)
미번
roomonfire
05/24 8982 20
[세이브 요청] RJ399530 만져라 장난 게임형 오나서포
요청
mochi12
05/24 3224 0
의술사처럼 턴제 스토리 맛난겜 더 있음?
질문
dirpachlrh
05/24 1840 0
[언어없음] Ero-Electric Dreams ver.25.06.29
미번
미스터장
05/24 11747 33
[미번] 갓 딴 임신시키기 좋은 날 ver.1.1c (26.05.20)
미번
미스터장
05/24 8567 40
[미번] 이 풍속점에 서큐버스는 필요 없다 ~No succubus Wanted~
미번
미스터장
05/24 9771 28
[정보] 아크메시아 ~하렘 임신시키기 사냥꾼 생활~ 다국어(한국어)포함가능성높음
정보
kkkkkk0909
05/24 5321 6
오 먹힌다
일반
ㅇㅇ
05/24 2228 1
자체한글인줄아랐내
일반
ㅇㅇ
05/24 2269 1
님들아 이미 탈퇴한거 같은 사람꺼 복구는 못하겠지?
질문
msw7162
05/24 3339 0