// ==UserScript== // @name Youtube Unblocker // @namespace YTUB // @version 5.1 // @description Automatically forwards any currently blocked YouTube video to eachvideo.com and unblocks the video. // @author drhouse // @include https://www.youtube.com/watch* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @icon https://s.ytimg.com/yts/img/favicon-vfldLzJxy.ico // @locale en // @downloadURL none // ==/UserScript== if ($('#player-unavailable:not(.hid)')) { location.replace('https://eachvideo.com/watch' + location.search); }