try to take over the world!
À partir de
// ==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.1
// @description try to take over the world!
// @author You
// @match https://tieba.baidu.com*/*
// @supportURL https://github.com/admin-ll55/
// @grant none
// ==/UserScript==
window.onload = 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);
});
};