kone
소미소프트

소미소프트

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

05/31/2025, 12:35:43
유틸
3950 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
오 신기하다
[5/25] 신춘특집 1부 (디퍼런스 버전)
영상
브레머튼
05/26 10988 72
Yakitomato-구직 실패한 서큐버스씨를 주웠습니다
동인
k8625
05/26 12204 62
[작가미상] 조금은 특이한 엄마와 섹스해 버리는 이야기
동인
1uF
05/26 9434 50
[요청은 없었지만 그냥 고대유물(?)복구] RJ119127 아사신【난세의 사신】사라 탐색형 RPG ~숙명의 자매~
복구
meruna00
05/26 13212 47
포레스티아 화딱지 나네
일반
tleni
05/26 1258 0
VP세레나 여주가 존나 불쌍한데
질문
zatsidjc
05/26 2023 1
던브 통합모드 질문
질문
enrkenrken
05/26 1760 0
[복구요청]히프노스 카드 ~타인의 메이드를 최면 게임으로 타락시킨다~
요청
Kurzweil
05/26 1969 0
[자막만 배포[1달]] Taboo Spell AI번역
영상
전적노트
05/26 10444 47
Yakitomato-가정적인 남자에게 잉여가 되어버리는 여신
동인
k8625
05/26 24997 156
존재감 여동생 왜 평가 나쁜지 해보니까 알겠네
일반
gogogo102938
05/26 2486 2
북극곰... 다죽어... 멸망해라......
일반
kig01
05/26 1809 2
드래곤 콩키스타 질문
질문
madmango
05/26 1360 0
동인작가 추천해주세요
질문
mskdkkd
05/26 2094 0
업적 0% [세이브 요청]비밀 노출 -배덕의 달콤함에 물든 마나카 세이브파일 요청드립니다
요청
ㅇㅇ
05/26 2244 1
에로검열관 업뎃이 내일이라네요
정보
admin1213
05/26 3402 7
요즘 맛있는 겜이 안나오네
일반
kskaren
05/26 1393 -2
휴지끈 긴 형님들 망가 제목좀 알려주세요
질문
qpwoeiur
05/26 1402 0
두 손을 써야하는 야겜은 실패한 야겜임...
일반
anonymous42
05/26 1664 5
호스트에게 속아 미니게임에서 秒 이거 거슬리는 사람
일반
미하리
05/26 1080 0
비월선행록
질문
hororolo
05/26 1516 0
존재감여동생 작가이새끼 ㅈㄴ웃기네 ㅋㅋㅋㅋ
일반
여동생킬러
05/26 3647 -8
[복구요청] RJ01529608 Pastime 옆집의 욕구불만 유부녀 네토리 음란화 작전
요청
fffqwfqw
05/26 2081 0
미망인설녀3 10월 상순 예정
야짤
kjalar
05/26 3801 14
포레스티아 묵힌지도 벌써 1년이 지났구나
일반
ㅇㅇ
05/26 1331 0
[복구요청] 마법소녀 루나와 나나미 ~ 악의 유전자를 잉태하는 모녀 ~ ver1.1.41 (한패/이미지)
요청
kaguya-houraisan
05/26 1724 0
손번이나 기번을 미번 그대로 할수있는 방법이 있나?
질문
d5d2d3d
05/26 2080 0
계승되는자의 고독 창고정리 혼자하는 파트 어케함?
질문
mintbeam
05/26 1069 0
suruga rinu/블아]Keiyaku Koujin
동인
black00
05/26 12785 48
enishi/블아]아스나짜아아아아아아아아아앙
동인
black00
05/26 9452 36