Filter out Peanut Butters

try to take over the world!

2018-04-01 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name         Filter out Peanut Butters
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       (You)
// @match        http://boards.4chan.org/*/thread/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    Array.from(document.querySelectorAll('.n-atb-3')).forEach(x => x.parentNode.parentNode.parentNode.parentNode.style.display = 'none');
})();