kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
4056 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
오 신기하다
에밀리아 & 스바루 (리제로)
영상
브레머튼
05/04 24029 117
보지고등학교 시리즈
영상
berryzz
05/04 41528 223
[미번/번역요청] 간판소녀 재정사정5 (과거편2)
동인
parttime
05/04 10742 18
[미번][번역요청][이 파일은 감염되지 않았습니다] RJ01617050
미번
돈을 잃고 있어요
05/04 14806 51
AI, 셀레스포니아) 아마네 매춘 (스타킹)
야짤
miso5
05/04 14029 172
[미번/번역요청]동경하는 스승의 복제체 상대로 하고 싶었던거 전부 하는 이야기
동인
아돌
05/04 10587 41
SAO NTR part1 복구글
복구
햄댕이
05/04 17684 65
[5/4] 신학 & 감우 '돈 기브 업' SFX 버전 및 추가분
영상
브레머튼
05/04 18646 145
[노모][Yurishima shiro] 후우코와 도련님
동인
qlkjrnd
05/04 33748 212
[구매보급]결혼 상대를 AI가 결정하는 세계에서 선택된 것은 엄청난 변태 여동생이었습니다.
소리
이름뭐하지
05/04 11221 52
[노모][Dorozumi] 사랑은 굉음을 내며 속삭여라
동인
qlkjrnd
05/04 25601 123
시발 개 똥겜 좆같아서 쓴다.
후기 및 공략
doodkey
05/04 12671 34
AI+NTR) 금태양에게 뒷계정 걸린 마린
야짤
177523
05/04 12146 34
[AI패치][버전업] RJ01591409 구련휘정 퀄터 아르미네스 & 탄젤 5/5 패치 버전
번역
rabthal
05/04 40468 123
배덕의 달콤함에 물든 마나카 FansChat 마개조 및 번역 모드 WIP Manaka
유틸
sco0815
05/04 12274 57
대충 지금껏 해본 여주물 야겜들 간단 후기
후기 및 공략
estehr523
05/04 8448 16
비월선행록 돌파재료 위치 텍스트번역
정보
보바도사
05/04 11810 18
[이미지 번역] 구련휘정 쿠르타 아르미네스 & 탄젤 EG
번역
나나바
05/04 31988 131
RJ01527385 이미지 번역 & 텍스트 일부 보완 패치
번역
shdcd
05/04 46120 238
비월선행록 공략 텍스트로 번역
정보
보바도사
05/04 19356 25
다시는 라데온을 무시하지 않겠습니다
작업현황
argoklarke
05/04 8878 18
(업데이트 알림/요청복구) RJ01467184 마법소녀 루나와 나나미 ~ 악의 유전자를 잉태하는 모녀 ~ ver1.1.41
미번
craven
05/04 10574 38
미번,Shuten Douji) 유부녀 죽이기 마안2 - 마을 진찰소의 여의사: 오다 야야(36)의 경우-
동인
kjalar
05/04 10185 15
미번) 담임의 메이드가 되어버린 흑갸루 4
동인
kjalar
05/04 12861 19
TU1EdHlwZTg3 모음집 업데이트어라이브 알림
영상
hannanas
05/04 15570 49
AI 딸깍 모음 [재미나이 API + 글록 AI] 여태것 내가 보기위해서 번역한것들
동인
noname
05/04 12580 48
농)우리아이 판타지아 0.71.0 passfile 2,4
번역
sngjw1kq
05/04 30875 60
[AI번역,임시,일부검수] 음최도시 휴프노즘(이미지번역 포함) RJ01613299
번역
saika
05/04 88714 370
[구매보급] RJ01605274 외 1
미번
gkqisq
05/04 14364 53
[손번역 Ver.0.20] Daily Lives My Countryside 0.3.4.3
번역
감자떡사요
05/04 60300 257