Last active
August 23, 2019 21:06
-
-
Save Ayc0/f3dc63a755772e400c55e9134b999df6 to your computer and use it in GitHub Desktop.
Hide ad
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
const hideAdd = () => Array.from(document.querySelectorAll( | |
'[role=article]' | |
)) | |
.filter(el => el.textContent.includes('Sponsorisé')) | |
.forEach(el => el.style="display: none"); | |
window.addEventListener('scroll', hideAdd); |
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
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