https://tieba.baidu.com*/*

try to take over the world!

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

You will need to install an extension such as Tampermonkey to install this script.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         https://tieba.baidu.com*/*
// @namespace    Tie Ba Bai Du - Remove Ads
// @icon         https://www.google.com/s2/favicons?domain=baidu.com
// @version      0.4
// @description  try to take over the world!
// @author       You
// @match        https://tieba.baidu.com*/*
// @supportURL   https://github.com/admin-ll55/
// @grant        none
// ==/UserScript==
setTimeout(function(){
    var script = document.createElement("SCRIPT");
    script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js';
    script.type = 'text/javascript';
    script.onload = function() {
        var $ = window.jQuery;
        //setInterval(function(){
            $("li.clearfix:not(.j_thread_list)").remove();
            $("div.l_post.l_post_bright.j_l_post.clearfix").each(function(){
                $(this).text().match("广告") ? $(this).remove() : void(0);
            });
        //}, 1000);
    };
    document.getElementsByTagName("head")[0].appendChild(script);
},5000);