/*
* @title スレッドフロートBBSのdatとかsubject.txtにジャンプ
* @license MIT License
*/
(function(){
var res;
//したらば
if(res = /^http:\/\/jbbs\.livedoor\.jp\/bbs\/read\.cgi\/(\w+\/\d+\/\d+)/.exec(location.href)){
location.href = "http://jbbs.livedoor.jp/bbs/rawmode.cgi/" + res[1];
}
else if(res = /^(http:\/\/jbbs\.livedoor\.jp\/\w+\/\d+)/.exec(location.href)){
location.href = res[1] + "/subject.txt"
}
//まちBBS
else if(res = /^(http:\/\/\w+\.machi\.to)\/bbs\/read\.cgi\/(\w+\/\d+)/.exec(location.href)){
location.href = res[1] + "/bbs/offlaw.cgi/" + res[2];
}
else if(res = /^(http:\/\/\w+\.machi\.to)\/(\w+)/.exec(location.href)){
location.href = res[1] + "/bbs/offlaw.cgi/" + res[2];
}
//2ch系
else if(res = /^(http:\/\/[\w\.]+\/)test\/read\.cgi\/(\w+)\/(\d+)/.exec(location.href)){
location.href = res[1] + res[2] + "/dat/" + res[3] + ".dat";
}
else if(res = /^(http:\/\/[\w\.]+\/\w+)/.exec(location.href)){
location.href = res[1] + "/subject.txt";
}
})();