/*
* @title go2back rblgmchn
* @description tumblr の個別 post ページからその post のある reblogmachine ページを開きます
* @include http://*.tumblr.com/post/*
* @license MIT License
* @require
*/
// reblogmachine http://reblog.machine.mamemomonga.com/
(function(){
var id=Number(window.location.pathname.match(/\d+/)[0]);
url='http://reblog.machine.mamemomonga.com/dashboard#any_9999_'+id;
window.open(url);
}
)();