Skip to content

Instantly share code, notes, and snippets.

@caglarorhan
Created April 21, 2023 02:05
Show Gist options
  • Save caglarorhan/6330a3986b9c9c630411d544b3de9afd to your computer and use it in GitHub Desktop.
Save caglarorhan/6330a3986b9c9c630411d544b3de9afd to your computer and use it in GitHub Desktop.
Removes twitter promoted ads with pageload and scroll events.
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