手机网页版IT之家去除广告和干扰

手机网页版IT之家去除广告,文章页去除分享、评分相关文章等。

目前為 2020-02-08 提交的版本,檢視 最新版本

// ==UserScript==
// @name         手机网页版IT之家去除广告和干扰
// @namespace    https://gf.qytechs.cn/zh-CN/users/442617-punkjet
// @version      0.4
// @description  手机网页版IT之家去除广告,文章页去除分享、评分相关文章等。
// @author       PunkJet
// @match        *://m.ithome.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $(".open-app-banner").remove();
    $(".open-app").remove();
    $("div[class='news-class']").remove();
    $(".main-site").remove();//去除文章内容中的购物链接
    removeIthomeAds();

    window.addEventListener("scroll", function() {
        removeIthomeAds();
        removeIthomeArticleAds();
    })
})();

function removeIthomeArticleAds() {
    $(".down-app-box").remove();
    $("div[class='relevant-news']").remove();
    $("div[class='hot-app']").remove();
    $("div[class='ggp-promotion']").remove();
    $("div[class='grade']").remove();
    $("div[id='bd-share-box']").remove();
    $("div[class='lapin']").remove();
}

function removeIthomeAds() {
    var spans1 = $("span[class='tip-suggest']");
    spans1.each(function() {
        $(this).closest("div.placeholder").remove();
    });

    var spans2 = $("span[class='tip tip-gray']");
    spans2.each(function() {
        $(this).closest("div.placeholder").remove();
    });

    var p1 = $("p[class='plc-title']");//删除标题关键字
    p1.each(function() {
        if($(this).text().match("福包") || $(this).text().match("大促") || $(this).text().match("开售") || $(this).text().match("预约")) {
            $(this).closest("div.placeholder").remove();
        }
    });


}

QingJ © 2025

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