// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 2024-11-21
// @description try to take over the world!
// @author You
// @match https://t.bilibili.com/?spm_id_from=333.1007.0.0
// @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant none
// ==/UserScript==
const append=document.body.appendChild
document.body.appendChild=function (...args){
if(args[0]?.innerText=="点赞成功"){
args[0].style.width='0px'
args[0].style.height='0px'
}
return append.call(this,...args)
}
油猴代码,其他的同理
可以利用子树修改的插入特征做宽高为0的属性赋值