YouTube Unblocker (Improved)

Automatically forwards country-blocked YouTube videos to tubeunblock.com and unblocks the video. Update for 6.2: eachvideo.com cant unblock videos, so it was Changed to tubeunblock.

// ==UserScript==
// @name         YouTube Unblocker (Improved)
// @namespace    YTUB
// @version      6.2
// @description  Automatically forwards country-blocked YouTube videos to tubeunblock.com and unblocks the video. Update for 6.2: eachvideo.com cant unblock videos, so it was Changed to tubeunblock.
// @author       drhouse. remade by Bobby Resine
// @include      https://www.youtube.com/watch*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @icon         https://tubeunblock.com/resources/assets/img/play-movies-icon.png
// @locale       en
// ==/UserScript==

$(document).ready(function () {

	//classic youtube
	if ($('#player-unavailable:not(.hid)').length) {
		location.replace('https://tubeunblock.com/watch' + location.search);
	}

	//new material design
	if ($('ytd-watch').attr('player-unavailable')==="") {
		location.replace('https://tubeunblock.com/watch' + location.search);
	}

});