// ==UserScript== // @name 屏蔽抖音网页版礼物栏 // @namespace https://live.douyin.com/660292215268 // @version v0.0.1 // @description 抖音网页端在看的时候容易点到礼物送出去 // @author By anwen // @match https://live.douyin.com/* // @match https://www.douyin.com/root/live/* // @match https://www.douyin.com/follow/live/* // @icon https://lf3-static.bytednsdoc.com/obj/eden-cn/666eh7nuhfvhpebd/douyin_web/douyin_web/pwa_v3/512_512.png // @grant none // ==/UserScript== (function() { 'use strict'; function hideElements() { const elements = document.querySelectorAll('div.fIHFYwJt'); elements.forEach(el => { el.style.display = 'none'; }); } const observer = new MutationObserver(mutations => { mutations.forEach(mutation => { if (mutation.addedNodes.length) { hideElements(); } }); }); observer.observe(document.body, { childList: true, subtree: true }); hideElements(); })();