/*
* @title page++
* @description page countup
* @include http://*
* @license MIT License
*/
var a=location.pathname.split('/');
var p=a[a.length-1];
if (/^\d+$/.test(p)) {
p++;
a.pop();
a.push(p);
} else {
if(p=='') a.pop();
a.push('2');
}
location.pathname=a.join('/');