kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
3899 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
오 신기하다
청아 / AI) 금단○리 납작가슴 소녀 100명이랑 학교에서 ㅅㅅ촬영 질내사정 ㅅㅅ (禁断〇リ つるぺた少女100人と学校でハメ撮り中出しSEX)
영상
darkunicorn
05/17 37563 130
아빠가vr개발자인데js딸이vr끼고남정네들이랑사이버러브
질문
fjeif2
05/17 3101 0
[요청복구/테스트] RJ065120 호스피탤러티 ~어느 병원에서의 너무 에로한 입원 성활~ 영상판 포함
복구
ㅇㅇ
05/17 19666 56
[복구요청] 빅젖 최면 에로 앱 학원
요청
mmmff
05/17 4999 3
[실시간 번역기] 4.0.0b4 업데이트했습니다.
작업현황
mrpls
05/17 5976 13
비의 괴물 질문
질문
갸갸갸갹
05/17 4096 0
요즘 하고있는 노가다 (빌네메레트)
야짤
clone23
05/17 4942 4
[요청복구] 히프노시스 아카데미, 신참 기사 라티, Nano-control Plus
복구
mmmff
05/17 25371 49
원래 예정대로면 이번 주 주말 중으로 구방주 1편 업로드 끝났어야 하는데...
작업현황
ㅇㅇ
05/17 6821 6
Yoshio Ereki, AI번역) 네가 임신할 때까지 한계 돌파 섹스
동인
sexe1
05/17 34201 200
던브 통합모드 존나 어렵네
일반
앨리스
05/17 4071 0
[복구요청]소장의 욕망증 시리즈
요청
dfgtewkwg
05/17 5208 5
[복구요청] RJ065120 한 병원에서 너무 에로틱 한 입원 성활
요청
집에 가고 싶어
05/17 5880 0
내 지식으로는 좀 느려도 이런식으로 딸깍 돌리는게 한계군
일반
azezazazezaz
05/17 3015 0
[ VAM ] awakening - Abracadabra [ Zhuang Fangyi ]
영상
s99a99
05/17 18162 70
[요청 복구] RJ292145 던전즈 레기온
복구
시라스 아즈사
05/17 23186 62
[요청 복구] 마망즈콜로세움(미번)
미번
Tladitlrekdtkfkdgo
05/17 15596 20
내인생의 명작 야겜2개를 꼽으라면..
일반
sayji
05/17 3987 0
gpt 프로 라이브메이커 맛보더니 정신 못차리네..
일반
아로나
05/17 2993 0
하드 배드섹터 생겼네
일반
aaaaaaaa
05/17 3175 0
[복구요청]오나서포 20연 가챠! 메스가키짱의 장난감 1, 2
요청
rlawlgy
05/17 5457 3
[복구요청] 던전즈 레기온
요청
jjyp6190
05/17 9436 0
[5/17] 신춘특집 2부
영상
브레머튼
05/17 17638 109
트랜스퍼 주말 내내 문제 많나보네
일반
48ii49
05/17 2746 0
비월선행록 사골 후기 + 사소한 팁
후기 및 공략
nierblack
05/17 14005 8
DL 질문
질문
dzqzvsz
05/17 2936 0
[복구요청] RJ01013197 아스카 버진 아이돌 데뷔
요청
2h4sd5
05/17 2830 1
[SIW] 각청
동인
edo
05/17 7954 13
소녀와 촉수와 밤의학교 비밀번호 아는 고수님?🐱🐱🐱
질문
coyface2020
05/17 3591 -1
비월선행록 다회차 중 강남루트 질문
질문
벨로_
05/17 3880 0