Greasy Fork is available in English.

NICO简单"翻墙"(nicozon版)

点击搜索页面的图片链接即可新开一个页面免翻墙浏览

Version au 17/06/2014. Voir la dernière version.

// ==UserScript==
// @name            NICO简单"翻墙"(nicozon版)
// @namespace       http://weibo.com/myimagination
// @author          @MyImagination
// @version			0.8
// @description     点击搜索页面的图片链接即可新开一个页面免翻墙浏览
// @include         http://*.nicovideo.jp/tag/*
// @include         http://*.nicovideo.jp/search/*
// @include         http://www.nicozon.net/watch/*
// @run-at          document-end
// ==/UserScript==

function iavi(icd){
	var vr = icd.substr(icd.indexOf("watch/") + 6);
	var iNode=document.createElement("a");
	iNode.id = "zdy";
	var iText = document.createTextNode('如果上面视频不能浏览 先尝试刷新 或者这里前往简洁版浏览');
	iNode.appendChild(iText);
	document.getElementById('flvplayer').appendChild(iNode);
	document.getElementById("zdy").href="http://nico.vocalover.com/nico.php?id=" + vr;
	document.getElementById("external_nico_0").style.visibility = "visible";
}

(function(){
	var url_ = window.location.href;
	if (parseInt(url_.indexOf("nicozon")) > 0) { 
	iavi(url_);
	} else { 
	$(".itemThumbWrap").each(function(){
	$(this).attr('href','http://www.nicozon.net/watch/'+$(this).closest('li').attr('data-id'));
})} 	      
})();