Greasy Fork is available in English.

今日头条 - 去广告

try to take over the world!

Verzia zo dňa 27.11.2017. Pozri najnovšiu verziu.

// ==UserScript==
// @name         今日头条 - 去广告
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       hxtgirq710@qq.com
// @match        http*://*.toutiao.com/*
// @require      https://code.jquery.com/jquery-latest.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(function(){
            $(".J_add").remove();
            setInterval(function(){
                $(".J_add").remove();
            }, 1000);
    });
})();