1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-28 12:58:57 +00:00

Qute: BetterTTV

This commit is contained in:
Phantop 2019-02-22 15:07:57 -05:00
parent 4e917c2259
commit cde87ac901

View file

@ -0,0 +1,22 @@
// ==UserScript==
// @name BetterTTV
// @namespace BTTV
// @description Enhances Twitch with new features, emotes, and more.
// @copyright NightDev, LLC
// @icon https://cdn.betterttv.net/assets/logos/bttv_logo.png
//
// @grant none
//
// @include *://*.twitch.tv/*
//
// @version 0.0.2
// ==/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);
})()