屏蔽抖音直播礼物弹幕

屏蔽抖音直播礼物弹幕。

// ==UserScript==
// @name         屏蔽抖音直播礼物弹幕
// @namespace    https://github.com/XiaoMiku01
// @version      0.1
// @description  屏蔽抖音直播礼物弹幕。
// @include      https://live.douyin.com/*
// @author       XiaoMiku01
// @match        https://gist.github.com/XiaoMiku01/e552ea03e8cc2e8bc95f6bba6e7c14c0
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tiktok.com
// @grant        none
// @license      none
// ==/UserScript==

(function() {
  window.onload = () => {
    const style = ".qeIYDuLt {display:none;}"
    const element = document.createElement('style')
    element.innerText = style
    document.body.appendChild(element)
  }
})();