Hitbox Emotes

The original Hitbox Emotes script with ober 15,000 emotes! - Request your custom emotes and mod badges here!

Από την 05/09/2014. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name Hitbox Emotes
// @namespace Hitbox Emotes
// @description The original Hitbox Emotes script with ober 15,000 emotes! - Request your custom emotes and mod badges here!
// @include	*.hitbox.tv/*
// @include	*.vgstreams.com/*
// @include	*.multistream.xuzia.com/*
// @icon http://i.imgur.com/fa1Kkku.png
// @version 1.3.8
// ==/UserScript==  

function style_init()
{
    var CustomStyle = document.createElement('link');
	CustomStyle.setAttribute('rel', 'stylesheet');
	CustomStyle.setAttribute('type', 'text/css');
	CustomStyle.setAttribute('href', 'https://dl.dropboxusercontent.com/u/23313911/Hitbox%20Emotes/css/CustomStyle.css')    
    
	var head = document.getElementsByTagName('head')[0];
	if (head) {
        head.appendChild(CustomStyle);
		console.log("Hitbox Emotes: Custom style loaded")
    }
}

function javascript_init()
{	
	var TwitchGlobal = document.createElement('script');
	TwitchGlobal.type = 'text/javascript';
	TwitchGlobal.src = "https://dl.dropboxusercontent.com/u/23313911/Hitbox%20Emotes/javascript/TwitchGlobal.js";

	var TwitchSub = document.createElement('script');
	TwitchSub.type = 'text/javascript';
	TwitchSub.src = "https://dl.dropboxusercontent.com/u/23313911/Hitbox%20Emotes/javascript/TwitchSub.js";
	
	var BackupEmotes = document.createElement('script');
	BackupEmotes.type = 'text/javascript';
	BackupEmotes.src = "https://cdn.rawgit.com/GamingTom/38c64ca519b686e58284/raw/14b88bf998012a98ae013e74615543b8db9c42cd/EmotesBackup.js";
	
	var CustomEmotes = document.createElement('script');
	CustomEmotes.type = 'text/javascript';
	CustomEmotes.src = "https://dl.dropboxusercontent.com/u/23313911/Hitbox%20Emotes/javascript/CustomEmotes.js";
	
	var CustomBadges = document.createElement('script');
	CustomBadges.type = 'text/javascript';
	CustomBadges.src = "https://dl.dropboxusercontent.com/u/23313911/Hitbox%20Emotes/javascript/CustomBadges.js";
    
	var head = document.getElementsByTagName('head')[0];
	if (head) {
		head.appendChild(TwitchGlobal);
		console.log("Hitbox Emotes: Global Twitch emotes loaded from " + TwitchGlobal.src)
		head.appendChild(TwitchSub);
		console.log("Hitbox Emotes: Subscriber Twitch emtoes loaded from " + TwitchSub.src)		
		head.appendChild(BackupEmotes);
		console.log("Hitbox Emotes: Backup emotes loaded from " + BackupEmotes.src)		
		head.appendChild(CustomEmotes);
		console.log("Hitbox Emotes: Custom emotes loaded from " + CustomEmotes.src)
		head.appendChild(CustomBadges);
	}
}

style_init();
window.onload = javascript_init;