kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
4082 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/13 29066 57
AI, 블루아카, 청아) 키보토스 사형수 클럽 특집
야짤
xepd5264
05/13 23048 34
Tsusauto-달밤의 흐트러진 술 ~유부녀는 만취한 남편 옆에서 동료에게 네토라레 당한다~ 전후편
동인
netorare6974
05/13 16991 54
[구매보급][번역요청] 그 즐거웠던 시골에서의 여름방학을 다시…
미번
minki
05/13 11251 31
오토코노코는 후타나리 누님에게 관리당하고 싶다 [α-AlfLayla]
동인
ㅇㅇ
05/13 14356 56
[구매보급][번역요청] 비가 갠 뒤의 소녀
미번
minki
05/13 14442 25
직장 근처 파트타임주부(41)를 집으로 데려가면 10년만의 땀범벅이 된 진심섹스로 거유 젖꼭지가 쭈뼛서고 방뇨절정하는 이야기
동인
1Q2W3E4R
05/13 39294 154
ai, 명조) 장리와 데이트 후 잔뜩 연인섹스 했다
야짤
kjh9304
05/13 16596 111
[구매보급]순애노예 純愛ドレイ。
소리
이름뭐하지
05/13 9713 63
소악마 스마트폰 작업현황
작업현황
toung
05/13 17020 22
[ai번역=오오토리 마히로] 나의 이세계 하렘 2
동인
mybest
05/13 17233 35
[이미지번역 100%,수정1]Daily Lives of My Countryside v0.3.4.3
번역
dodoph123
05/13 34170 170
[Dekosuke 18gou] 너의 눈동자에 반한 게 아냐 (모자이크 제거 합체판)
동인
사축몬(퇴사)
05/12 35686 79
[요청복구] RJ311439 [손번역] 전희 루루카 ver1.1 한글패치 수정3
복구
Ghost
05/12 40218 54
벽자지
동인
안드레
05/12 28778 98
야짤
쩝냡
05/12 17482 31
[손번역] kurosu gatari 와일드식 총집편 오마케
동인
uhyoo
05/12 24929 71
MurPloxy 복구
영상
ㅔㅔ
05/12 23772 83
[요청복구/직번]밀크쉐이크1+2편[MaidenMasher+Spizzy]
영상
goovidla
05/12 33302 206
이때까지 재밌게 한 게임 후기(스포)
후기 및 공략
aim762
05/12 32390 62
공주님은 왕자님보다 못생긴 아저씨를 좋아하지만 NTR같은 건 아닙니다
동인
에우리알레
05/12 26703 101
실수했으니 복구 [Freshwomen 2]
복구
zadvoskoi
05/12 34541 59
[구매보급] RJ01477151 RJ01504060 [한국어 자막판] 남편 밖에 모르는 신혼 유부녀가 ○밥 자○님에게 탁란당하는 이야기♡
소리
r4gsdrg
05/12 21067 85
[직번] [청아] [ushidaihuku] 나의 돌 (트릭컬)
동인
yjgtiihty
05/12 12357 59
ai)----청아임신스압----이리야
야짤
Ghost
05/12 8405 28
후타) [obsession! (Hyoga.)] 무언가 자라난 하지메 3.5
동인
스타더스트
05/12 14743 21
ai) 렌탈 치즈루
야짤
Ghost
05/12 7457 30
ai) 블아 유메
야짤
Ghost
05/12 11185 29
보추) [Locon]카나메 10
동인
요요코코
05/12 25154 29
[청아/근친/서양](BEN10)Day With GWEN
영상
Ghost
05/12 33777 137