댓글 자동확장 개선 스크립트
https://kone.gg/s/somisoft/b3Kid-M_YjOKD_kofh5zyb
여기 이분 스크립트에서 챗지피티로 댓글 확장 코드만 추출 후 개선한 스크립트입니다. 문제시 글삭함
원본 작성자가 삭제 요청시 글내림(허락받음ㅎ). 오류 생기면 스크립트 삭제 추천
1
원본 댓글 확장은 대댓 확장만 자동이고 댓글 더 불러오기는 자동이 아니라서 추가했습니다.
1
1
템퍼몽키 확장프로그램 받으시고 새 스크립트 만들기 > 안에 내용 지우고 스크립트 복붙 > 파일 저장
아래는 스크립트입니다.
// ==UserScript==
// @name kone 댓글 자동 확장 + 더 불러오기
// @namespace http://tampermonkey.net/
// @version 1.1
// @description kone.gg에서 댓글을 자동으로 확장하고 '댓글 더 불러오기'도 자동 클릭합니다.
// @author 김머시기
// @match https://kone.gg/*
// @grant none
// @license MIT
// @run-at document-idle
// ==/UserScript==
(function () {
'use strict';
function clickAllExpandButtons() {
const expandButtons = document.querySelectorAll('button');
let clickedAny = false;
expandButtons.forEach(button => {
try {
const text = button.textContent.trim();
const isCommentExpand = /^\d+개의 댓글$/.test(text);
const isLoadMore = text === '댓글 더 불러오기';
if ((isCommentExpand || isLoadMore) && button.offsetParent !== null) {
button.click();
clickedAny = true;
}
} catch (e) {
// 무시
}
});
if (clickedAny) {
// 여전히 확장할 수 있는 버튼이 남아있을 수 있으므로 재귀 호출
setTimeout(clickAllExpandButtons, 500);
}
}
function updateGlobalStyles() {
const styleFix = document.createElement('style');
styleFix.textContent = `
.comment-wrapper,
.comment-wrapper .overflow-x-auto,
.comment-wrapper .overflow-hidden,
.thread-body-content .overflow-hidden {
overflow: visible !important;
max-height: none !important;
}
`;
document.head.appendChild(styleFix);
}
function runCommentFix() {
clickAllExpandButtons();
updateGlobalStyles();
}
const observer = new MutationObserver(() => {
clearTimeout(commentFixTimer);
commentFixTimer = setTimeout(runCommentFix, 100);
});
let commentFixTimer = null;
observer.observe(document.body, { childList: true, subtree: true });
observer.observe(document.documentElement, { attributes: true, attributeFilter: ['class'] });
function observeURLChange() {
let lastUrl = location.href;
const urlChangeHandler = () => {
if (location.href !== lastUrl && location.href.includes('/s/')) {
lastUrl = location.href;
setTimeout(runCommentFix, 500);
}
};
const urlObserver = new MutationObserver(urlChangeHandler);
urlObserver.observe(document.body, { childList: true, subtree: true });
const originalPush = history.pushState;
history.pushState = function () {
originalPush.apply(this, arguments);
urlChangeHandler();
};
window.addEventListener('popstate', urlChangeHandler);
}
const init = () => {
runCommentFix();
observeURLChange();
};
if (document.readyState === 'complete' || document.readyState === 'interactive') {
init();
} else {
document.addEventListener('DOMContentLoaded', init);
}
})();
6
공지
AI 이미지 관련 공지 및 관련 규정 수정 공지
1uF
05/02
62485
22
AI 이미지 관련 공지 및 관련 규정 수정 공지
공지
1uF
05/02 62485 22
공지
‼️뉴비 필독 가이드‼️
1uF
05/02
93244
134
‼️뉴비 필독 가이드‼️
공지
1uF
05/02 93244 134
공지
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
SK
04/05
206959
-25
🔔[필독] 채널 규정 & 신문고 (2026 04 05~)
공지
SK
04/05 206959 -25
공지
🔔[필독] 탭 별 이용 가이드 (20260206~)
Etrick
02/05
255442
-41
🔔[필독] 탭 별 이용 가이드 (20260206~)
공지
Etrick
02/05 255442 -41
공지
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
SK
05/17/25
1244564
-14
[필독] 서브에 자주 올라오는 여러 가지 질문 모음 (20251026~)
공지
SK
05/17/25 1244564 -14
유틸
[업뎃] 자동 복호화/DL미리보기/자동국룰/자동다운 통합 스크립트 Auto 소미
김머시기
05/24/25
17472
44
[업뎃] 자동 복호화/DL미리보기/자동국룰/자동다운 통합 스크립트 Auto 소미
유틸
김머시기
05/24/25 17472 44
유틸
다키스트 던전 Lustiest Lair 1.6 메가-커스텀 팩
파에톤1호팬
05/24/25
10459
15
다키스트 던전 Lustiest Lair 1.6 메가-커스텀 팩
유틸
파에톤1호팬
05/24/25 10459 15
유틸
base64 자동복호화 (자동/수동모드 전환 가능)
arcjay
05/24/25
18874
79
base64 자동복호화 (자동/수동모드 전환 가능)
유틸
arcjay
05/24/25 18874 79
유틸
루나트랜스 ai번역 프롬프트 (탈옥+번역개선)_06.10업뎃
GOLAL
05/23/25
10077
16
루나트랜스 ai번역 프롬프트 (탈옥+번역개선)_06.10업뎃
유틸
GOLAL
05/23/25 10077 16
유틸
업데이트!) Base64 변환기 2.0 [확장 프로그램]
꼬께
05/23/25
8975
42
업데이트!) Base64 변환기 2.0 [확장 프로그램]
유틸
꼬께
05/23/25 8975 42
유틸
자동 국룰입력/복호화/다운로드 확장프로그램 스크립_귀인 분 코드 긴급 패치_이거 말고 원본 쓰쎔
noname911
05/22/25
13061
16
자동 국룰입력/복호화/다운로드 확장프로그램 스크립_귀인 분 코드 긴급 패치_이거 말고 원본 쓰쎔
유틸
noname911
05/22/25 13061 16
유틸
kone 이미지 일괄 다운로드
글쓴이
05/21/25
17529
37
kone 이미지 일괄 다운로드
유틸
글쓴이
05/21/25 17529 37
유틸
썸네일 미리보기 다크모드, 댓글창 개선 스크립트
김머시기
05/18/25
16280
32
썸네일 미리보기 다크모드, 댓글창 개선 스크립트
유틸
김머시기
05/18/25 16280 32
유틸
자동 국룰입력/복호화/다운로드 확장프로그램 스크립트
김머시기
05/18/25
61732
174
자동 국룰입력/복호화/다운로드 확장프로그램 스크립트
유틸
김머시기
05/18/25 61732 174
유틸
[유틸/수정1] 히토미 다운로더 스크립트 with 코네
kts
05/17/25
13075
30
[유틸/수정1] 히토미 다운로더 스크립트 with 코네
유틸
kts
05/17/25 13075 30
s/somisoft
• 143,985 subscribers여러가지 다루는 서브
Created 05/17/2025, 14:58:43