YouTube redirect

Redirect YouTube url to my fullscreen version.

目前为 2014-11-19 提交的版本。查看 最新版本

// ==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);