Created
August 7, 2024 20:36
-
-
Save Zaczero/c4e19f7aa4daf750663f0153b5774cfa to your computer and use it in GitHub Desktop.
Bookmark script for detecting low resolution images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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