Greasy Fork

抖音弹幕优化

抖音去除送礼弹幕

目前为 2023-10-14 提交的版本。查看 最新版本

// ==UserScript==
// @name         抖音弹幕优化
// @namespace    抖音去除送礼弹幕v1
// @version      0.2
// @description  抖音去除送礼弹幕
// @author       食翔狂魔
// @match        *live.douyin.com/*
// @grant        none
// @license MIT
// ==/UserScript==
 
(function() {
  //'use strict';
  let num = 0;
  setInterval(()=>{
    let a = document.querySelectorAll(".xgplayer-danmu div[elementtiming='element-timing']")
    for(let i=0;i<a.length;i++){
      let b = a[i].querySelectorAll("img.content-with-gift_danmaku").length;
      if(b>0){
        a[i].remove();
      }
    }
    num++;
    console.log("抖音检测并清除送礼弹幕已执行" + num + "次。");
  },1000)
})();