정방 핫게 안가는데 괜찮은 글들 좀 있어서 방법을 찾아봄
스크립트 적용하면 이렇게 10개 이상만 볼수 있고
원할 때 끄고 키고 할 수 있어

방법
1) 크롬스토어/확장스토어에서 확장프로그램 Tampermonkey 설치

2) new script 만들기

3) 기존꺼 다 지우고 아래 스크립트 붙여넣기
// ==UserScript==
// @name Theqoo 댓글 10개 이상만 보기
// @match https://theqoo.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const MIN_REPLY = 10;
document.querySelectorAll('table.theqoo_board_table tbody tr').forEach(row => {
// 공지글은 유지
if (row.classList.contains('notice')) return;
const reply = row.querySelector('a.replyNum');
// 댓글 없는 글 숨김
if (!reply) {
row.style.display = 'none';
return;
}
const count = parseInt(reply.textContent.trim(), 10) || 0;
if (count < MIN_REPLY) {
row.style.display = 'none';
}
});
})();
4) 확장프로그램 설정 들어가서 Allow user script 허용

5) 새로고침하면 적용됨.
캡쳐는 웨일 기준이야!