Skip to content

Instantly share code, notes, and snippets.

@Ayc0
Last active August 23, 2019 21:06
Show Gist options
  • Save Ayc0/f3dc63a755772e400c55e9134b999df6 to your computer and use it in GitHub Desktop.
Save Ayc0/f3dc63a755772e400c55e9134b999df6 to your computer and use it in GitHub Desktop.
Hide ad
const hideAdd = () => Array.from(document.querySelectorAll(
'[role=article]'
))
.filter(el => el.textContent.includes('Sponsorisé'))
.forEach(el => el.style="display: none");
window.addEventListener('scroll', hideAdd);
const hideAdd = () => Array.from(document.querySelectorAll(
'article'
))
.filter(el => el.textContent.includes('Promoted'))
.forEach(el => el.style="display: none");
window.addEventListener('scroll', hideAdd);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment