Created
August 31, 2019 23:59
-
-
Save kinow/4b5e7337c838b4e29a860bfe9b9f1806 to your computer and use it in GitHub Desktop.
Keep only audio icons freesfonline.de
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
[...(document.getElementById("stories").children)] | |
.filter(e => e.tagName.toLowerCase() === 'div') | |
.filter((e) => { | |
const images = [...(e.querySelectorAll('img'))]; | |
const audioIcon = images.filter((i) => i.title.toLowerCase().includes('audio')) | |
return audioIcon.length === 0 | |
}) | |
.map((e) => e.remove()) | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment