javascript:(async function(){try{const res=await fetch('futaba.php?mode=json');if(!res.ok)return;const data=await res.json();if(!data||!data.res)return;const idMap={};for(let num in data.res){const t=data.res[num];if(t&&t.id){idMap[num]=t.id.replace('ID:','');}}const cells=document.querySelectorAll('td');for(let i=0;i<cells.length;i++){const cell=cells[i];let num='';const links=cell.querySelectorAll('a');for(let l of links){const href=l.href||'';const m=href.match(/res\/(\d+)\.htm/i);if(m){num=m[1];break;}}if(!num){const m=cell.innerHTML.match(/res\/(\d+)\.htm/i);if(m)num=m[1];}if(num&&idMap[num]){if(!cell.querySelector('.f-pure-id')){const div=document.createElement('div');div.className='f-pure-id';div.style.cssText='font-size:9px;color:#d00;font-weight:bold;background:#fff;border:1px%20solid%20#d00;padding:1px%202px;margin-top:2px;text-align:center;word-break:break-all;line-height:1.1;position:relative;z-index:9999;max-width:65px;margin-left:auto;margin-right:auto;border-radius:3px;';div.innerText=idMap[num];cell.appendChild(div);}}}}catch(e){console.error(e);}})();