kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
3929 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
오 신기하다
orgy dice 작업근황
정보
돔마
04/27 13842 17
AI/청아) 임산부 스웨터
야짤
날개 로봇
04/27 6057 18
얼탱이가 없네 ㅋㅋㅋㅋㅋㅋㅋ
야짤
sesv3030
04/27 23665 57
[미번/번역요청] 선생님과 의붓어머니와 연인의 얼굴 2 의붓 조모 미조구치 아오이편
동인
kosmof
04/27 16903 16
(이종간) [자체한글,구매보급] 이세계 비스트로
번역
ArIso
04/27 62327 228
[기계번역](청아)(ntr) NTR에 능숙한 타카기씨 풀 데이트 편
동인
sssddss
04/27 33855 65
[アブジャン] 타카기 양과 오빠의 추억 앨범 (자막없음)
영상
aisha
04/27 27504 119
cm9pcm9pbW1k, TU1EdHlwZTg3 모음집 업데이트 알림
영상
hannanas
04/27 30457 53
AI, 셀레스포니아) 덕트 함정
야짤
miso5
04/27 16377 111
[AI] 도로롱
야짤
kifbodo245
04/27 16074 24
bWkgcG8geg== 신작
영상
ㅇㅇ
04/27 50144 276
(이종간, 료나, 촉수, 난자포식) 암꽃탐충 오구페스카 -전편-
동인
snsyah00
04/27 35842 150
RJ01045491 최면의 공주기사 v1.092 (26.03.31) Uncen
복구
ㅇㅇ
04/27 37123 108
[구매보급/최면음성] RJ074283 레○프・사운드・걸♪ (내 첫 동인음성)
소리
summer4552
04/27 10140 44
[Shirabe Shiki] 대음마전에 있어서 감각 차단 부적은 필수 대비책입니다 ①
동인
티모
04/27 53012 327
호시노 (블아)
영상
브레머튼
04/27 18286 85
제품 코드 추출기, 제품 코드 중복 찾기
유틸
ㅇㅇ
04/27 8566 18
나츠노 사가시모노 RJ370402 회상 save
세이브
sadwdas
04/27 12149 17
펌,다테로쿠) 아내와 의붓자식이 같은 사람(나)을 좋아하게 되는 것은 유전자적으로 당연!2
동인
kjalar
04/27 18695 61
[복구][4K,1080] bbc ep19+20, ep21+22 (eWV5ZWJpcmRpZQ==)
영상
jaennab
04/27 28513 111
[노모화완료] [Dozamura] 돌보기 좋아하는 엄마, 아들한테 박혀버리다
동인
lliililiiii
04/27 27049 94
[노모화완료] [yomoda yomo] 고학력(인텔리) 유부녀 아마미야 토코 준교수(선생님)의 발정 _안경있음
동인
lliililiiii
04/27 35880 104
AI, 블아) 매지컬 스즈미
야짤
miso5
04/27 8230 41
airandou 여동생을 임신시키지 못하면 나갈 수 없는 섬 2편
동인
posan
04/27 35134 210
바니걸 키아라
야짤
Ghost
04/27 15854 63
[후타] 비비안 & 벨 (ZZZ) 파트 1
영상
브레머튼
04/27 21092 82
음최도시 힙노즘 (제목이 맞나 모르겠음) 28일 자정에 발매할듯
정보
wouwouer
04/27 13455 18
[4K60FPS] Custom Udon 노모 (LADA)
영상
쿠지락스
04/27 41388 232
[kakao/노모] 연인☆놀이
동인
ㅇㅇ
04/27 25991 85
업뎃)철부지 고양이 에르샤 ver.1.03
미번
쩝냡
04/27 13800 55