Skip to content

Instantly share code, notes, and snippets.

@Nick-Gabe
Last active November 26, 2023 05:48
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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