// ==UserScript==
// @name           cocoMakeBN
// @namespace      http://furyu.tea-nifty.com/
// @description    make backnumber-pages of cocolog (ver.0.01c)
// @include        http*://app*cocolog-nifty.com/t/app/weblog/post*saved_added=1*
// @include        http*://app*cocolog-nifty.com/t/app/weblog/post*saved_changes=1*
// @include        http*://app*cocolog-nifty.com/t/app/weblog/post*deleted=1*
// ==/UserScript==

(function(){
var	d,w;
if (typeof unsafeWindow!='undefined') {
	w=unsafeWindow;
	if (w!=top) return false;
	d=w.document;
}
else {
	w=window;
	d=document;
}

if (w._cocoMakeBN_) return;
w._cocoMakeBN_=true;

w.ccmb_num=5;		//	number of entries  per page
w.ccmb_fent=false;	//	true => refresh entries
w.ccmb_ffrm=false;	//	true => refresh frames

var s=d.createElement('script');
s.charset='UTF-8';
s.src='http://furyu.tea-nifty.com/script/cocoMakeBN.js?ver='+(new Date).getTime();
d.body.appendChild(s);
})();

