08/01/30 03:46:28 M+NVaYV+0
>>502-503
チナミニ、もし userChrome.js をお使いの場合は
(function(){
handleLinkClick__original = handleLinkClick;
handleLinkClick = function(event, href, linkNode){
if (content.location.href.match(/http:\/\/127\.0\.0\.1:8823\/thread\/http:\/\/.*/)
&& (href.indexOf("javascript")!= -1)){
event.stopPropagation();
return;
}
handleLinkClick__original(event, href, linkNode);
}
})();
で「その8-3」でもこのアタリの問題は無くなります。