Skip to content

Instantly share code, notes, and snippets.

@but80
Created November 18, 2019 05:42
Show Gist options
  • Save but80/664eb5a344df2af5929633d8004dadc3 to your computer and use it in GitHub Desktop.
Save but80/664eb5a344df2af5929633d8004dadc3 to your computer and use it in GitHub Desktop.
TwitterでRTだけ一時的に消す
setInterval(()=>document.querySelectorAll('span').forEach(e=>{if(e.textContent.substr(-8)!='さんがリツイート')return;while(e.tagName!='ARTICLE')e=e.parentNode;e.style.display='none'}),500)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment