您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Brings back OG PogChamp via BTTV CDN
// ==UserScript== // @name Twitch - Bring back PogChamp // @namespace Chia233 // @version 0.4 // @description Brings back OG PogChamp via BTTV CDN // @author Chia233 // @match https://www.twitch.tv/* // @grant none // @run-at document-idle // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js // ==/UserScript== //use (function() { 'use-strict'; let observer = new MutationObserver((mutations) => { mutations.forEach((m) => { if (m.addedNodes.length) { let resultLength = $("img[alt='PogChamp']").length //console.log(`Current node length is: ${length}`) for (let i = 0; i < resultLength; i++) { $("img[alt='PogChamp']")[i].src = "https://cdn.betterttv.net/emote/5ff8cf3194ed120c66d3bb9e/3x" $("img[alt='PogChamp']")[i].srcset = "https://cdn.betterttv.net/emote/5ff8cf3194ed120c66d3bb9e/3x" }; }; }); }); function observeDOM() { observer.observe(document.querySelector(".chat-shell"), { childList: true, attributes: true, attributeFilter: ['style'], subtree: true }); }; setTimeout(observeDOM, 3000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址