/*
* @title cd ..
* @description up dir
* @include http://*
* @license MIT License
*/
// via http://let.hatelabo.jp/taizooo/let/gYC-ycqj_OyNKg
// thx http://let.hatelabo.jp/Syoichi/let/gYC-ycqn2pi5MA
a=location.pathname.split('/');
if(a[a.length-1]=='') a.pop();
a.push('..');
a.push('');
location.pathname=a.join('/');