頭に[転載禁止]が付かないパターンがあるようなので変更。
//スレッド一覧のスレッドタイトル先頭/末尾から[転載禁止]/(c)2ch.netを削除
function BoardActionRefreshed(board){tenten(board);}
function BoardActionLoaded(board){tenten(board);}
function BoardActionCreatedNewThread(board){tenten(board);}
function ThreadActionDownloadComplete(thread)
{
title = thread.Title;
if(title.match(/^\[転載禁止\] (.+)/)){
title = RegExp.$1;
}
if(title.match(/(.+)\©2ch\.net\t$/)){
thread.Title = RegExp.$1;
}
}
function tenten(board)
{
for(var i = 0; i < board.Count; i++){
title = board.GetThread(i).Title;
if(title.match(/^\[転載禁止\] (.+)/)){
title = RegExp.$1;
}
if(title.match(/(.+)\©2ch\.net\t$/)){
board.GetThread(i).Title = RegExp.$1;
}
}
}