/*
* @title リンククリック用隙間
* @description 空白文字だけでクリックできないリンクをクリックできるように、隙間を追加します。
* @include http://*
* @license MIT License
*/
(function() {
var l = document.getElementsByTagName("a");
for (var i = 0; i < l.length; i++)
if (l[i].offsetWidth < 6 || l[i].offsetHeight < 2) l[i].appendChild(document.createTextNode("_"));
})();