Skip to content

Instantly share code, notes, and snippets.

@samfundev
Created September 21, 2018 11:10
Show Gist options
  • Save samfundev/8541e9d78f0f9aee5fd4c262b7ebc95e to your computer and use it in GitHub Desktop.
Save samfundev/8541e9d78f0f9aee5fd4c262b7ebc95e to your computer and use it in GitHub Desktop.
// ==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