Tampermonkey屏蔽网页指定的元素
--屏蔽今日头条置顶文章
一、使用Chrome插件Adblock Plus
在设置高级设置过滤规则中设置
# 屏蔽置顶文章
toutiao.com##.feed-card-wrapper.feed-card-article-wrapper.sticky-cell
# 屏蔽推荐排行
toutiao.com##.ttp-hot-board
二、使用油猴插件
自己编写脚本(使用javascript)
// ==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';
let css = `
.feed-card-wrapper.feed-card-article-wrapper.sticky-cell{
display: none
}
`
GM_addStyle(css)
})();