替换B站B豆

自动将B站B豆替换为流汗黄豆

当前为 2023-06-06 提交的版本,查看 最新版本

// ==UserScript==
// @name         替换B站B豆
// @version      0.2.0
// @description  自动将B站B豆替换为流汗黄豆
// @author       chitoge
// @match      *://*.bilibili.com/*
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/1092406
// ==/UserScript==
(function() {
    'use strict';
    setInterval(() => {
  let imgList = document.querySelectorAll('img.emoji-small');
  for (let img of imgList) {
    let span = document.createElement('span');
    span.className = 'reply-content';
    span.textContent = '😅';
    img.parentNode.replaceChild(span, img);
  }
}, 5000);
    // Your code here...
})();