/*
* @title RakugakiHB Reader
* @description Fix links on RakugakiHB
* @include http://rakgakihb.x.fc2.com/ts/*
* @include http://rakgakihb.x.fc2.com/jidou/*
* @license MIT License
* @require
*/
var target = document.querySelector('.box3 a:nth-child(3)');
if (target.href.match(/(ts|jidou)x\.html?(\d\d)/)) {
target.href = RegExp.$1 + RegExp.$2 + '.html';
}