Skip to content

Instantly share code, notes, and snippets.

@Mottekmalocher
Last active December 23, 2020 02:59
Show Gist options
  • Save Mottekmalocher/b6a09f625eb6a9692c217b31e6a2153d to your computer and use it in GitHub Desktop.
Save Mottekmalocher/b6a09f625eb6a9692c217b31e6a2153d to your computer and use it in GitHub Desktop.
uTwitch Userscript
// ==UserScript==
// @name uTwitch Userscript
// @namespace uTwitch
// @description
// @include https://*.twitch.tv/*
// @exclude https://api.twitch.tv/*
// @inject-into page
// @downloadURL https://gist.github.com/Mottekmalocher/b6a09f625eb6a9692c217b31e6a2153d
// @updateURL https://gist.github.com/Mottekmalocher/b6a09f625eb6a9692c217b31e6a2153d
// ==/UserScript==
(function injectScript() {
var script = document.createElement('script')
script.type = 'text/javascript'
script.id = 'uTwitchScript'
script.src = 'https://cdn.utwitch.net/utwitch/utwitch.min.js'
document.head.appendChild(script)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment