Skip to content

Instantly share code, notes, and snippets.

@Nick-Gabe
Last active November 26, 2023 05:48
Show Gist options
  • Save Nick-Gabe/fbec7309d980f335205a789256b5bc65 to your computer and use it in GitHub Desktop.
Save Nick-Gabe/fbec7309d980f335205a789256b5bc65 to your computer and use it in GitHub Desktop.
cat zap zap web
setInterval(() => {
i=atob('aHR0cHM6Ly9pMS5zbmRjZG4uY29tL2FydHdvcmtzLWxHdXU5bnRES0FSeTZ6YjAtMldMUUxBLXQ1MDB4NTAwLmpwZw==');
Array.from(document.querySelectorAll(`img:not([src="${i}"])`))
.forEach(image => image.src = i);
Array.from(document.querySelectorAll('svg'))
.forEach(svg=>svg.outerHTML=`<img src="${i}" style="height:${svg.clientHeight}px;width:${svg.clientWidth}px"></img>`)
},100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment