>>695
ログ速はそのままのスレurlを渡してもだめ
2chのurl分解して板名とスレ番号渡さなきゃ

page({
label: "現在のページを ログ速 で開く",
condition: "nolink",
oncommand: function(event){
if(RegExp(/^http:\/\/\w+\.(2ch\.net|bbspink\.com)\/test\/r.+/).test(content.location.href)){
var sl = content.document.location.href.split("/");
var board = sl[5];
var key = sl[6];
var res = sl[7];
var logsoku = "http://www.logsoku.com/r/";+ board + "/" + key + "/" + res;
window.addMenu.openCommand(event, logsoku);
}
}
});