Automatically forwards country-blocked YouTube videos to eachvideo.com and unblocks the video.
当前为
// ==UserScript==
// @name Youtube Unblocker
// @namespace YTUB
// @version 6.0
// @description Automatically forwards country-blocked YouTube videos 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
// ==/UserScript==
$(document).ready(function () {
//classic youtube
if ($('#player-unavailable:not(.hid)').length) {
location.replace('https://eachvideo.com/watch' + location.search);
}
//new material design
var message = $('#container > ytd-player-error-message-renderer > div:nth-child(2)').text();
if (message === 'The uploader has not made this video available in your country.'){
location.replace('https://eachvideo.com/watch' + location.search);
}
});