您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
移除 B 站动态拼多多广告
// ==UserScript== // @name 移除拼多多广告 // @namespace https://zjy.name/ // @version 1.0 // @description 移除 B 站动态拼多多广告 // @author Zhang Visper // @match https://t.bilibili.com/* // @grant none // ==/UserScript== (function() { 'use strict'; const list = document.getElementsByClassName('bili-dyn-list__items')[0]; const walk = () => { Array.from(list.children).forEach(i => { if (i.textContent.includes('拼多多') && i.textContent.includes('百亿补贴') && i.textContent.includes('展开')) { i.style.display = 'none' } }) } const observer = new MutationObserver(walk) observer.observe(list, { childList: true }); })();