kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
3926 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
오 신기하다
엽빛나 [ZZZ] (기본 + 후타)
영상
브레머튼
04/27 23530 95
시시아 & 와이즈 (ZZZ)
영상
브레머튼
04/27 22667 102
[P and I] 장난으로 수영복 수치 노출 -반 친구들에게 보여진 가슴- + IF 스토리
동인
ed123
04/27 27709 64
[야애니] 누퀴톼쉬 스페셜 1-4
영상
공승아
04/26 47183 260
[요청복구] Glory & Miserable Survivors DX
복구
stir-friedturnip
04/26 22995 53
미번) 교배 라이센스 ~ 비치헌팅으로 마구 섹스 편 ~
동인
kjalar
04/26 25420 44
(アブジャン)산타코스 타카기 양과 씹덕남의 메모리
영상
greenwow
04/26 25767 118
[고전 명작]나와 그녀와 그녀의 사랑
복구
blackmalangcalf
04/26 21904 62
(요청복구) RJ140344 아카쿠비 투기장
복구
Ghost
04/26 21352 43
[sugiyuu] 암컷타락 누나. 늘 나를 지켜주던 여장부 같던 누나는 오늘도 선배의 품에 안겨 여자가 된다
동인
asawqs11
04/26 25648 75
AI, 블아) 수영복 이즈나랑 해변
야짤
miso5
04/26 13843 46
[한글패치]이상한 형무소와 음욕의 지하 미궁 ~빈틈투성이인 나나의 H한 프리즌 브레이크~_1.1.0
번역
아르
04/26 90278 371
걸레인 미카 씨는 만지게 해주지 않아.
소리
dasdaa
04/26 17656 60
후기) 내 근육 돌려줘!
후기 및 공략
parmisgood
04/26 12112 43
RJ01557970 너스콜 경비원(자택경비원3) 세이브파일
세이브
ersya
04/26 19689 18
[Isenori] 음침한 여동생을 『교육』해서 쾌락 중독의 육변기로 만든다 28
동인
요요코코
04/26 20068 52
[🔞체험판 공개! 체험판 한국어 패치 파일] 대 꽃 필 무렵에 체험판
번역
폭8맛
04/26 80647 169
[미번] 미번 일겜 73개 + 미번 양겜 14개
미번
미스터장
04/26 62356 272
AI, 셀레스포니아) 벽 엉덩이, 그 후
야짤
miso5
04/26 11230 114
이미지 잘못 드래그해서 바이러스 대처 방안 2800자 날라감 장문
정보
laat2
04/26 12814 74
[번역/저퀄] [kawase seiki] Underworld Lover
동인
cjd08
04/26 20190 41
[요청복구] RJ01361520 Trial of lust 번역 파일
복구
도로롱
04/26 24085 58
신학 & 감우 'DON'T GIVE UP' 4K
영상
브레머튼
04/26 28133 154
미끼 치한 수사관 리나 유저 모드 업데이트
정보
happy123
04/26 13613 35
본디지 게임 & 본디지 게임 DVG
미번
argoklarke
04/26 10477 45
[구매보급]암컷 타락 합숙【전편 느릿오호】
소리
이름뭐하지
04/26 17099 69
[구매보급/최면 영상] RJ405819 더블 서큐버스 마인드 해킹 라이브
영상
summer4552
04/26 24055 83
[야애니/알림] 음오옥 똰지 2화 업 알림
영상
공승아
04/26 21749 59
RJ01406729 퇴마사 시즈나 (게임+회상방 개방)
세이브
gnown
04/26 12676 19
루콜라 (포켓몬 챔피언스)
영상
브레머튼
04/26 32885 214