mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-16 11:52:47 +00:00
Qute: BetterTTV
This commit is contained in:
parent
4e917c2259
commit
cde87ac901
22
.local/share/qutebrowser/greasemonkey/betterttv.user.js
Normal file
22
.local/share/qutebrowser/greasemonkey/betterttv.user.js
Normal 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);
|
||||||
|
})()
|
Loading…
Reference in a new issue