今日头条 - 去广告

去除今日头条中广告信息

目前為 2017-12-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name         今日头条 - 去广告
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  去除今日头条中广告信息
// @author       [email protected]
// @match        http*://*.toutiao.com/*
// @require      https://code.jquery.com/jquery-latest.js
// @grant        none
// ==/UserScript==

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址