Skip to content

Instantly share code, notes, and snippets.

@Zaczero
Created August 7, 2024 20:36
Show Gist options
  • Save Zaczero/c4e19f7aa4daf750663f0153b5774cfa to your computer and use it in GitHub Desktop.
Save Zaczero/c4e19f7aa4daf750663f0153b5774cfa to your computer and use it in GitHub Desktop.
Bookmark script for detecting low resolution images
javascript:!function(){for(let t of document.querySelectorAll("img"))t.naturalWidth&&t.naturalHeight&&(t.width*devicePixelRatio>t.naturalWidth||t.height*devicePixelRatio>t.naturalHeight)&&(t.style.border="2px solid red")}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment