Redirect YouTube url to my fullscreen version.
当前为
// ==UserScript==
// @name YouTube redirect
// @version 1.0.0
// @description Redirect YouTube url to my fullscreen version.
// @include http*://*.youtube.com/*
// @include http*://youtube.com/*
// @namespace https://greasyfork.org/users/3159
// ==/UserScript==
var a = 0;
setInterval(function(){
if(window.location.href.indexOf('watch?') > -1 && a == 0 ){
a = 'http://iflyun.net/y/?' + window.parent.location.href.split('v=')[1] ;
window.location.replace( a );
}
}, 10);