Created
September 21, 2019 12:17
-
-
Save imedadel/ef5fc66e41b3ab2a72acd3654da42117 to your computer and use it in GitHub Desktop.
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
// Using class name | |
[...document.querySelectorAll('img.FFVAD')] | |
// Using alt text | |
[...document.querySelectorAll('img')].filter(img => img.alt.includes('Image may contain') || img.alt.includes.('No photo description available.')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment