// Execute this from browser console // Tested on Chrome. Firefox does not work. Even pop-up blocker is disabled it still blocks opening new windows. // Things to do: // Enable option Download PDF files instead of automatically opening them in Chrome in chrome // Allow popups Array.from(document.querySelectorAll('a')).filter(a => a.hostname.startsWith('dl.')).map((v)=>{v.setAttribute('target','_blank'); v.classList.remove('a'); return v}).forEach(v=>{window.open(v.href,'_blank'); console.log(v.href)})