YouTube redirect

Redirect YouTube url to my fullscreen version.

19.11.2014 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name              YouTube redirect
// @version           1.0.1
// @description     Redirect YouTube url to my fullscreen version.
// @include           https://*youtube.com/*
// @include           http://*youtube.com/*
// @namespace    https://greasyfork.org/users/3159
// @run-at            document-start
// ==/UserScript==

var a = 0;
setInterval(function(){
    if( a == 0 && window.location.href.indexOf('watch?') > -1 && window.location.href.indexOf('list=WL') < 0 ){
        a = '//iflyun.net/y/?' + window.parent.location.href.split('v=')[1] ;
        window.location.replace( a );
    }
}, 10);