/*
* @title Youtube auto-redirector
* @description auto redirect on Youtube
* @include http://www.youtube.com/redirect*
* @include https://www.youtube.com/redirect*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
(function () {
if (!/^www\.youtube\.com\/redirect/.test(location.hostname + location.pathname)) return;
var link = document.querySelector('#content-container a[href]');
if (!link || !link.href) return;
location.href = link.href;
})();