Untitled

 avatar
unknown
plain_text
10 months ago
720 B
13
Indexable
javascript:(function(){let links=[];for(let i=1;i<=20;i++){let selector=`span[data-test-id="billeder_af_bilen___billede_${i}"] textarea`;let element=document.querySelector(selector);if(element&&element.value&&element.value.trim().match(/^https?:\/\//i)){links.push(element.value.trim());}}if(links.length>0){let html=`<html><head><style>img{max-width:100%;cursor:pointer;transition:transform 0.3s;}img.zoomed{transform:scale(2);}</style></head><body>`;links.forEach(link=>{html+=`<img src="${link}" onclick="this.classList.toggle(%27zoomed%27)"/>`;});html+=%27</body></html>%27;let newWindow=window.open(%27%27);newWindow.document.write(html);newWindow.document.close();}else{alert(%27Ingen billedlinks fundet%27);}})();
Editor is loading...
Leave a Comment