PC
티스토리 특정게시글에만 댓글 안보이게 하기
✯
2022. 7. 14. 09:54
<script>
var sheet = document.createElement('style');
sheet.innerHTML = "div#tistory-comment {display:none!important;}\n"
document.body.appendChild(sheet); // append in body
document.head.appendChild(sheet); // append in head
</script>
댓글부분의 div 의 id가 tistory-comment인 경우가 대부분일 텐데
그 div 전체를 안보이게 Javascript로 구현했다.
위 코드를 게시글 html의 맨 밑에 붙여두면 된다.
특정 게시글에 악플이 붙을 때 유용하다.