Created
April 21, 2023 02:05
-
-
Save caglarorhan/6330a3986b9c9c630411d544b3de9afd to your computer and use it in GitHub Desktop.
Removes twitter promoted ads with pageload and scroll events.
This file contains 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 removeAdTwt = ()=>{ | |
document.querySelectorAll('[data-testid="placementTracking"]').forEach(oDiv=>{ | |
if(oDiv.innerHTML.includes('Promoted</span>')){ | |
oDiv.remove(); | |
} | |
}) | |
}; | |
window.addEventListener("load", removeAdTwt); | |
window.addEventListener("scroll", removeAdTwt); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment