屏蔽今日头条置顶文章

我的浏览器我做主

目前為 2022-08-03 提交的版本,檢視 最新版本

// ==UserScript==
// @name         屏蔽今日头条置顶文章
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  我的浏览器我做主
// @author       YoungYuan
// @match        *://www.toutiao.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=toutiao.com
// @grant        GM_addStyle
// @require      https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==

(function () {
    'use strict';

    // 方法一:使用css
    let css = `
        .feed-card-wrapper.feed-card-article-wrapper.sticky-cell{
            display: none
        }
    `
    GM_addStyle(css)

    // 方法二:使用jquery
    // let element = '.feed-card-wrapper.feed-card-article-wrapper.sticky-cell'
    // if (element) {
    //     $(element).hide()
    // }
})();

QingJ © 2025

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