屏蔽今日头条置顶文章

我的浏览器我做主

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         屏蔽今日头条置顶文章
// @namespace    http://tampermonkey.net/
// @version      1.3.1
// @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';

    let css = `
        .feed-card-wrapper.feed-card-article-wrapper.sticky-cell{
            display: none
        }
        .feed-five-wrapper{
            display: none
        }
    `
    GM_addStyle(css)

})();