Greasy Fork is available in English.

今日头条 - 去广告

去除今日头条中广告信息

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

// ==UserScript==
// @name         今日头条 - 去广告
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  去除今日头条中广告信息
// @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,.J_qihu_ad,li[ad_id]").remove();
            setInterval(function(){
                $(".J_add,.J_qihu_ad,li[ad_id]").remove();
            }, 1000);
    });
})();