Created
September 21, 2018 11:10
-
-
Save samfundev/8541e9d78f0f9aee5fd4c262b7ebc95e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name BetterTTV | |
// @namespace https://nightdev.com/betterttv/ | |
// @version 0.1 | |
// @description BetterTTV enhances Twitch with new features, emotes, and more. We like to think we make Twitch better. | |
// @author night | |
// @match *://*.twitch.tv/* | |
// @exclude *://*.twitch.tv/*.html | |
// @exclude *://*.twitch.tv/*.html?* | |
// @exclude *://*.twitch.tv/*.htm | |
// @exclude *://*.twitch.tv/*.htm?* | |
// @grant none | |
// ==/UserScript== | |
(function betterttv() { | |
var script = document.createElement('script'); | |
script.type = 'text/javascript'; | |
script.src = 'https://cdn.betterttv.net/betterttv.js'; | |
var head = document.getElementsByTagName('head')[0]; | |
if (!head) return; | |
head.appendChild(script); | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment