Greasy Fork is available in English.

哔哩哔哩屏蔽up主动态广告

哔哩哔哩屏蔽动态广告

// ==UserScript==
// @name         哔哩哔哩屏蔽up主动态广告
// @namespace    https://greasyfork.org/zh-CN/users/314234-yong-hu-ming
// @version      1.0.1
// @description  哔哩哔哩屏蔽动态广告
// @author       Yong_Hu_Ming
// @match        *://*.bilibili.com/*
// @match        *://*.bilibili.com
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @run-at       document-start
// @license      WTFPL
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
    const css = `div.bili-dyn-list__item:has(div.bili-dyn-content__orig__additional) {
    display: none !important;
}`
    GM_addStyle(css);
})();