YouTube Unblocker

Adds menu button to automatically forward any currently blocked YouTube video to eachvideo.com and unblocks the video.

目前为 2017-08-07 提交的版本。查看 最新版本

// ==UserScript==
// @name         YouTube Unblocker 
// @namespace    YTUB
// @version      5.2
// @description  Adds menu button to automatically forward any currently blocked YouTube video to eachvideo.com and unblocks the video.
// @author       drhouse
// @include      https://www.youtube.com/*
// @include      http://www.youtube.com/*
// @grant        GM_registerMenuCommand
// @grant        GM_getResourceText
// @resource spfremove https://gf.qytechs.cn/scripts/16935-disable-spf-youtube/code/Disable%20SPF%20Youtube.user.js
// @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 () {

	eval(GM_getResourceText("spfremove"));

	GM_registerMenuCommand("YouTube Unblocker", function(){
		var theurl = window.location.href;
		theurl = theurl.replace("youtube.com", "eachvideo.com");
		window.location.href = theurl;
	});

});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址