


윾돌
•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 | 51,608 | 76 |
| 115 | 공지 | 자유 게시판 이용안내 [12] | 관리자 | 02.28 | 40,321 | 5 |
| 1594 | 자유 | ㅇㅇ(240.130) | 05.27 | 7496 | 0 | |
| 1592 | 자유 | 신구 사실폭로[22] | ㅇㅇ(125.187) | 05.27 | 5581 | 4 |
| 1591 | 자유 | ![]() 24 이재용 | 05.27 | 4986 | 1 | |
| 1590 | 자유 | ㅇㅇ(248.148) | 05.27 | 5634 | 2 | |
| 1589 | 자유 | 결국 졌구나 ?[3] | ㅇㅇ(248.148) | 05.27 | 5195 | 2 |
| 1588 | 자유 | 뿌늬가 인장이라고?[1] | ????(253.72) | 05.27 | 4951 | 1 |
| 1587 | 자유 | 뿌늬는인장(222.100) | 05.27 | 5373 | 0 | |
| 1586 | 자유 | ㅇㅇㅇㅇㅇ(122.46) | 05.27 | 5559 | 0 | |
| 1585 | 자유 | 다방레디 술 타나(119.207) | 05.27 | 6360 | 2 | |
| 1584 | 자유 | ![]() 22 비스서민 | 05.27 | 5943 | 1 | |
| 1580 | 자유 | ![]() 28 H녀 | 05.27 | 6181 | 0 | |
| 1579 | 자유 | ![]() 22 비스서민 | 05.27 | 5556 | 1 | |
| 1578 | 자유 | ㅇㅇ(242.99) | 05.27 | 5655 | 0 | |
| 1577 | 자유 | ![]() 22 비스서민 | 05.27 | 5296 | 0 | |
| 1576 | 자유 | ![]() 22 비스서민 | 05.27 | 5894 | 1 | |
| 1575 | 자유 | ![]() 22 비스서민 | 05.27 | 6433 | 3 | |
| 1574 | 자유 | ![]() 3 거린이에요 | 05.27 | 5522 | 0 | |
| 1570 | 자유 | 신구섭 연락_(122.46) | 05.27 | 5932 | 5 | |
| 1569 | 자유 | 메로나_(110.14) | 05.26 | 6086 | 1 | |
| 1568 | 자유 | ![]() 24 이재용 | 05.26 | 6053 | 1 | |
| 1567 | 자유 | ㅇㅇㅇㅇ(118.36) | 05.26 | 5414 | 0 | |
| 1566 | 자유 | ![]() 7 ㅇㅇ | 05.26 | 8189 | 0 | |
| 1565 | 자유 | --(175.210) | 05.26 | 5549 | 0 | |
| 1564 | 자유 | ㅃㄴㅇㅁ가 불쌍[2] | ㅇㅈ?(1.210) | 05.26 | 5540 | 0 |
| 1562 | 자유 | ㅃㄴ는 불쌍하다[6] | 유전이다(250.11) | 05.26 | 5611 | 0 |
| 1561 | 자유 | 장판팔이(240.153) | 05.26 | 6005 | 6 | |
| 1560 | 자유 | ㅇㅇ(248.148) | 05.26 | 5284 | 3 | |
| 1558 | 자유 | 걍 신구글 싹 밀어라[1] | ㅇㅇ(118.235) | 05.26 | 5490 | 1 |
| 1557 | 자유 | 시끄러운새끼(211.226) | 05.26 | 4752 | 1 | |
| 1556 | 자유 | ![]() 28 H녀 | 05.26 | 6148 | 4 | |
| 1555 | 자유 | ![]() 28 H녀 | 05.26 | 4988 | 1 | |
| 1554 | 자유 | ㅁㄴㅇㄴㅁㅇㄴ(211.104) | 05.26 | 7182 | 3 | |
| 1553 | 자유 | 왜 이게 찐??[9] | ㅇㅇ(248.156) | 05.26 | 6247 | 3 |
| 1552 | 자유 | ㅇㅇ(248.156) | 05.26 | 5477 | 2 | |
| 1551 | 자유 | ㅇㅇ(210.57) | 05.26 | 5539 | 8 | |
| 1550 | 자유 | 낑낑이 해보신분~[3] | ![]() 22 니코틴로빈 | 05.26 | 4967 | 1 |
| 1548 | 자유 | 다양하다...[1] | ![]() 35 아리e | 05.26 | 5448 | 0 |
| 1545 | 자유 | ㅇㅇ(253.199) | 05.25 | 6385 | 0 | |
| 1543 | 자유 | 호호허헣 (211.104) | 05.25 | 5909 | 0 | |
| 1541 | 자유 | 큐폰(119.70) | 05.25 | 9538 | 0 | |
| 1540 | 자유 | 웃음벨님께[8] | ![]() 3 신구 BJ코알 | 05.25 | 5696 | 3 |
| 1538 | 자유 | 대단한뿌늬(59.2) | 05.25 | 5785 | 2 | |
| 1537 | 자유 | ㅇㅇ(243.105) | 05.25 | 5493 | 1 | |
| 1536 | 자유 | ![]() 4 성상입니다 | 05.25 | 4961 | 0 | |
| 1535 | 자유 | 신구 재업뎃 도망쳐[2] | ㅇㅇ(243.105) | 05.25 | 5440 | 5 |
| 1534 | 자유 | 뿌늬 버티기 쌀먹[4] | 쌀먹왕뿌뿌늬(59.2) | 05.25 | 5394 | 1 |
| 1533 | 자유 | 도전모드 문의 주세요[1] | 도전모드(243.248) | 05.25 | 5271 | 1 |
| 1531 | 자유 | 훌룰루(211.104) | 05.24 | 6049 | 2 | |
| 1530 | 자유 | ㅇㅇ(243.105) | 05.24 | 5254 | 3 | |
| 1526 | 자유 | 뿌늬실명제(59.2) | 05.24 | 5926 | 0 |