Hi, worked flawlessly with 1.5 but now it doesnt anymore.
Here is the code:
// ==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);
})()
hopefully you have some insight, i was only using userscripts for this! Thanks a lot!
Hi, worked flawlessly with 1.5 but now it doesnt anymore.
Here is the code:
hopefully you have some insight, i was only using userscripts for this! Thanks a lot!