######################################### ################## MAL ################# ####################################### javascript:(function(){ let titles = []; document.querySelectorAll('h1.title-name, p.title-english').forEach(el=>{ titles.push(el.innerText.trim()); }); if(titles.length > 0){ let text = titles.join(' | '); navigator.clipboard.writeText(text).then(() => { alert('Copied to clipboard:\n' + text); }).catch(err => { alert('Failed to copy: ' + err); }); } else { alert('No titles found on this page.'); } })(); ################################################ ################## anidb.net ################## ############################################## javascript:(function(){ let t=[]; t.push(document.querySelector('#tab_2_pane span[itemprop="name"]')?.textContent.trim()||""); document.querySelectorAll('#tab_2_pane tr.official label[itemprop="alternateName"]').forEach(el=>t.push(el.textContent.trim())); document.querySelectorAll('#tab_2_pane tr.syn td.value').forEach(el=>t.push(el.textContent.trim())); const s=document.querySelector('#tab_2_pane tr.short td.value')?.textContent.trim(); if(s)t.push(s); t=t.filter(Boolean); if(!t.length)return void console.log("No titles/synonyms found"); const r=t.join(" | "); navigator.clipboard.writeText(r) .then(()=>{ console.log("Copied:",r); window.open("https://bvll.neocities.org/nibl/","_blank"); }) .catch(e=>console.error("Copy failed",e,r)); })();