NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name betterttvtwitchdesktop // @description Roughly injects bttv into twitch.tv which is intended to be a quick bandage for the desktop app when used with adguard filtering TwitchUI.exe // @include http*://*.twitch.tv/* // @include http*://twitch.tv/* // @version 0.1.0 // @author beefaronicake // @license MIT // ==/UserScript== var ele = document.createElement("script"); var scriptPath = "https://cdn.betterttv.net/betterttv.js"; ele.setAttribute("src",scriptPath); document.head.appendChild(ele);