Skip to content

Instantly share code, notes, and snippets.

@kinow
Created August 31, 2019 23:59
Show Gist options
  • Save kinow/4b5e7337c838b4e29a860bfe9b9f1806 to your computer and use it in GitHub Desktop.
Save kinow/4b5e7337c838b4e29a860bfe9b9f1806 to your computer and use it in GitHub Desktop.
Keep only audio icons freesfonline.de
[...(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