


윾돌
•2026.01.09 19:49:56먼저 스크립트를 실행해 줄 **'Tampermonkey(탬퍼몽키)'**라는 확장 프로그램을 깔아야 합니다. (유명하고 안전한 프로그램입니다.)
https://chromewebstore.google.com/?utm_source=ext_app_menu
이 주소로 들어가면 크롬 웹스토어가 나오는데 검색창에 Tampermonkey 를 검색해서 설치해줍니다
브라우저 우측 상단에 생긴 **검은색 네모 아이콘(Tampermonkey)**을 클릭하세요. (안 보이면 퍼즐 조각🧩 아이콘을 눌러보세요.)
메뉴에서 **[ + 새 스크립트 만들기 ]**를 클릭합니다.
화면에 뭔가 코드가 적혀있을 텐데, 싹 다 지워서 빈칸으로 만드세요.
아래 코드를 복사해서 그 자리에 그대로 붙여넣기(Ctrl+V) 하세요.
// ==UserScript==
// @name 거타 채팅 도배 차단기 V29
// @namespace http://tampermonkey.net/
// @version 29.0
// @description
// @author User
// @match https://geota.co.kr/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 1. 차단 키워드
const blockList = [
"즐라탄"
];
const historyCounts = {};
// 2. 문자 세탁 (수정됨: 자음/모음 허용)
function superClean(text) {
// 가-힣(완성글자), ㄱ-ㅎ(자음), ㅏ-ㅣ(모음), 영어, 숫자만 남김
return text.replace(/[^가-힣ㄱ-ㅎㅏ-ㅣa-zA-Z0-9]/g, '');
}
// 3. 도배 판별
function isSpam(el) {
try {
const rawText = el.innerText;
const cleanText = superClean(rawText);
// [A] 공백/투명 도배 차단
if (cleanText.length === 0) {
if (el.querySelector('img')) return false;
return true;
}
// [B] 키워드 차단
if (blockList.some(keyword => cleanText.includes(keyword))) {
return true;
}
// [C] 중복 도배 차단
const count = (historyCounts[cleanText] || 0) + 1;
if (cleanText.length > 10) {
return count > 1;
} else {
return count > 4;
}
} catch (e) {
return false;
}
}
// 4. 안전한 처리 함수
function checkAndAct(el) {
const row = el.closest('.self-stretch');
if (!row || row.id === 'geota-chatting-window' || row.classList.contains('custom-scrollbar-y')) return;
const cleanText = superClean(el.innerText);
if (isSpam(el)) {
if (row.style.display !== 'none') {
row.style.display = 'none';
if (cleanText) historyCounts[cleanText] = (historyCounts[cleanText] || 0) + 1;
}
} else {
if (row.style.display === 'none') {
row.style.display = '';
}
if (cleanText) historyCounts[cleanText] = (historyCounts[cleanText] || 0) + 1;
}
}
// 5. 스크롤 고정 함수
function anchorScroll(chatWindow) {
const scrollContainer = chatWindow.querySelector('.custom-scrollbar-y');
if (!scrollContainer) return;
const isAtBottom = scrollContainer.scrollHeight - scrollContainer.scrollTop - scrollContainer.clientHeight <= 150;
if (isAtBottom) {
requestAnimationFrame(() => {
scrollContainer.scrollTop = scrollContainer.scrollHeight;
});
}
}
// 6. 실행 엔진
function startEngine() {
const chatWindow = document.getElementById('geota-chatting-window');
if (!chatWindow) {
setTimeout(startEngine, 500);
return;
}
const observer = new MutationObserver((mutations) => {
let needsScrollFix = false;
mutations.forEach((mutation) => {
if (mutation.type === 'characterData') {
const node = mutation.target.parentElement;
if (node && node.closest('.text-sm')) {
checkAndAct(node.closest('.text-sm'));
needsScrollFix = true;
}
}
else if (mutation.type === 'childList') {
mutation.addedNodes.forEach((node) => {
if (node.nodeType !== 1) return;
const textEl = node.querySelector ? node.querySelector('.text-sm.font-medium.leading-normal') : null;
if (textEl) {
checkAndAct(textEl);
needsScrollFix = true;
}
});
}
});
if (needsScrollFix) {
anchorScroll(chatWindow);
}
});
observer.observe(chatWindow, {
childList: true,
subtree: true,
characterData: true,
attributes: false
});
// 보조 순찰 (0.5초)
setInterval(() => {
for (let key in historyCounts) delete historyCounts[key];
const targets = chatWindow.querySelectorAll('.text-sm.font-medium.leading-normal');
targets.forEach(el => checkAndAct(el));
}, 500);
}
startEngine();
})();
코드를 다 넣으셨으면 키보드 Ctrl + S를 누르세요.
거타 사이트에 가서 새로고침(F5) 한 번 해주면 끝입니다!
새로 생긴 확장프로그램에 숫자1이 보인다면 잘 작동하고있다는뜻입니다.
전체 댓글 10개









| 번호 | 분류 | 제목 | 글쓴이 | 작성일 | 조회 | 추천 |
|---|---|---|---|---|---|---|
| 131 | 공지 | 거상을 더 즐겁게! 유저 중심 커뮤니티, 거타를 소개합니다. [23] | 관리자 | 02.28 | 50,187 | 76 |
| 115 | 공지 | 자유 게시판 이용안내 [12] | 관리자 | 02.28 | 38,934 | 5 |
| 488 | 자유 | ![]() 21 dbswnstn | 03.19 | 5572 | 0 | |
| 479 | 자유 | 안녕하세요[1] | ASD(211.40) | 03.19 | 5086 | 1 |
| 478 | 자유 | 반가부리(121.140) | 03.19 | 5250 | 0 | |
| 470 | 자유 | 오라시온(118.235) | 03.19 | 7392 | 2 | |
| 469 | 자유 | ㅇㅇ(211.234) | 03.19 | 5220 | 0 | |
| 468 | 자유 | 비스서민(49.171) | 03.19 | 5867 | 1 | |
| 467 | 자유 | 비스서민(49.171) | 03.19 | 6168 | 3 | |
| 466 | 자유 | ㅇㅇ(121.140) | 03.19 | 6012 | 2 | |
| 465 | 자유 | 거짱맨(122.35) | 03.19 | 7764 | 0 | |
| 463 | 자유 | ㅇㅇ(121.140) | 03.19 | 5795 | 1 | |
| 462 | 자유 | 거리니(223.38) | 03.19 | 4990 | 2 | |
| 461 | 자유 | ㅇㅇ(59.15) | 03.18 | 7613 | 1 | |
| 460 | 자유 | 김춘례범인(211.228) | 03.18 | 5841 | 8 | |
| 449 | 자유 | ㅇㅇ(211.234) | 03.18 | 6243 | 0 | |
| 448 | 자유 | ㅇㅇ(59.15) | 03.18 | 6064 | 0 | |
| 447 | 자유 | 명왕궁삽니다(61.43) | 03.17 | 4984 | 1 | |
| 446 | 자유 | ㅇㅇ(121.140) | 03.17 | 8760 | 0 | |
| 440 | 자유 | 명왕검(211.235) | 03.17 | 4871 | 0 | |
| 419 | 자유 | ㅇㅇ(220.84) | 03.16 | 6115 | 1 | |
| 418 | 자유 | ㅇㅇ(59.15) | 03.16 | 5158 | 0 | |
| 417 | 자유 | 장비요(211.248) | 03.15 | 5165 | 0 | |
| 416 | 자유 | ㅇㅇ(59.15) | 03.15 | 7384 | 0 | |
| 415 | 자유 | ㅎㅎㅎ(219.254) | 03.14 | 5459 | 2 | |
| 414 | 자유 | 2차하자(49.163) | 03.14 | 7495 | 1 | |
| 413 | 자유 | ㅇㅇ(121.140) | 03.14 | 5670 | 0 | |
| 411 | 자유 | 비스서민(49.171) | 03.14 | 5585 | 1 | |
| 400 | 자유 | 비스서민(49.171) | 03.14 | 8004 | 1 | |
| 399 | 자유 | heej123(106.255) | 03.14 | 4771 | 0 | |
| 398 | 자유 | 비스서민(49.171) | 03.14 | 5190 | 2 | |
| 397 | 자유 | 아이디단군(223.38) | 03.14 | 5387 | 0 | |
| 386 | 자유 | ㅇㅇ(121.140) | 03.14 | 5227 | 0 | |
| 385 | 자유 | 비스서민(124.28) | 03.14 | 5849 | 1 | |
| 383 | 자유 | 비스서민(124.28) | 03.14 | 5334 | 1 | |
| 382 | 자유 | 비스서민(124.28) | 03.14 | 6373 | 2 | |
| 381 | 자유 | 비스서민(49.171) | 03.13 | 6507 | 2 | |
| 380 | 자유 | 비스서민(49.171) | 03.13 | 6577 | 2 | |
| 379 | 자유 | 비스서민(49.171) | 03.13 | 6079 | 2 | |
| 378 | 자유 | ㅇㅇ(59.15) | 03.13 | 10302 | 0 | |
| 377 | 자유 | 거상초보(116.39) | 03.13 | 11796 | 5 | |
| 376 | 자유 | 거상초보(116.39) | 03.13 | 10272 | 3 | |
| 375 | 자유 | ㅇㅇ(121.140) | 03.13 | 6035 | 0 | |
| 374 | 자유 | 거상초보(116.39) | 03.13 | 16948 | 2 | |
| 373 | 자유 | 거상초보(116.39) | 03.13 | 8621 | 2 | |
| 372 | 자유 | 거상초보(116.39) | 03.13 | 25165 | 2 | |
| 369 | 자유 | 오호섭물러가라(106.101) | 03.13 | 4984 | 0 | |
| 368 | 자유 | ㅇㅇ(121.140) | 03.13 | 5682 | 0 | |
| 355 | 자유 | ㅇㅇ(121.140) | 03.13 | 6723 | 1 | |
| 344 | 자유 | 도전모드(118.38) | 03.13 | 5434 | 1 | |
| 343 | 자유 | ㅇㅇ(223.42) | 03.12 | 4691 | 1 | |
| 341 | 자유 | ㅇㅇ(210.86) | 03.12 | 5019 | 2 |