当サイトにはアフィリエイト広告が含まれます。なおレビューは私の感想を書いており、内容を指示するご依頼はお断りしています

レスタネットの末端素材を採集地域別に並び替えるブックマークレット作った

javascript:(()=>{const targets=['取得情報','詳細'];[...document.querySelectorAll('button')].filter(b=>targets.includes(b.textContent.trim())).forEach(b=>b.click());const c=document.querySelector('#endMaterialList');if(!c)return;const items=[...c.querySelectorAll('.step-content-item')];const exclude=['シャード','クリスタル','クラスター'];const gatherMap={};const others=[];items.forEach(item=>{const t=item.textContent;if(exclude.some(w=>t.includes(w)))return;if(!t.includes('採集')){others.push(item);return}const rm=t.match(/【(.+?)】/);if(!rm){others.push(item);return}let region=rm[1].split('(')[0].trim();const after=t.split(rm[0])[1]||'';const am=after.match(/^\s*([^\(\(\n]+)/);if(!am){others.push(item);return}const area=am[1].trim();gatherMap[region]??={};gatherMap[region][area]??=[];gatherMap[region][area].push(item)});c.innerHTML='';Object.keys(gatherMap).sort((a,b)=>a.localeCompare(b,'ja')).forEach(region=>{const h2=document.createElement('h2');h2.textContent=region;c.appendChild(h2);Object.keys(gatherMap[region]).sort((a,b)=>a.localeCompare(b,'ja')).forEach(area=>{const h3=document.createElement('h3');h3.textContent=area;h3.style.marginLeft='1em';c.appendChild(h3);gatherMap[region][area].forEach(it=>{it.style.marginLeft='2em';c.appendChild(it)})})});if(others.length){const h2=document.createElement('h2');h2.textContent='その他';c.appendChild(h2);others.forEach(it=>{it.style.marginLeft='1em';c.appendChild(it)})}})();