var timeline = document.querySelector("div > section > div > div"); var clickTweetDropdown = ()=>{timeline.querySelector('div[data-testid="caret"]').click()}; var clickTweetDelete = ()=>{document.querySelector('div[data-testid="Dropdown"] path[d="M16 6V4.5C16 3.12 14.88 2 13.5 2h-3C9.11 2 8 3.12 8 4.5V6H3v2h1.06l.81 11.21C4.98 20.78 6.28 22 7.86 22h8.27c1.58 0 2.88-1.22 3-2.79L19.93 8H21V6h-5zm-6-1.5c0-.28.22-.5.5-.5h3c.27 0 .5.22.5.5V6h-4V4.5zm7.13 14.57c-.04.52-.47.93-1 .93H7.86c-.53 0-.96-.41-1-.93L6.07 8h11.85l-.79 11.07zM9 17v-6h2v6H9zm4 0v-6h2v6h-2z"').parentNode.parentNode.parentNode.click();}; var clickTweetDeleteConfirm = ()=>{document.querySelector('div[data-testid="confirmationSheetConfirm"]').click();}; var clickAllRetweetDropdowns = ()=>{document.querySelectorAll('div[role="group"] path[d="M4.75 3.79l4.603 4.3-1.706 1.82L6 8.38v7.37c0 .97.784 1.75 1.75 1.75H13V20H7.75c-2.347 0-4.25-1.9-4.25-4.25V8.38L1.853 9.91.147 8.09l4.603-4.3zm11.5 2.71H11V4h5.25c2.347 0 4.25 1.9 4.25 4.25v7.37l1.647-1.53 1.706 1.82-4.603 4.3-4.603-4.3 1.706-1.82L18 15.62V8.25c0-.97-.784-1.75-1.75-1.75z"]').forEach(el=>{el.parentNode.parentNode.parentNode.click()});}; var clickAllRetweetDeletionConfirmations = ()=>{document.querySelectorAll('div[data-testid="unretweetConfirm"]').forEach(el=>{el.click()})}; var deleteTweet = ()=> {clickTweetDropdown();setTimeout(()=>{clickTweetDelete(); setTimeout(()=>{clickTweetDeleteConfirm();});}, 100);}; var deleteAllRetweets = ()=>{clickAllRetweetDropdowns();clickAllRetweetDeletionConfirmations();}; function annihilate() { deleteAllRetweets(); setTimeout( ()=>{ deleteTweet(); setTimeout(()=>{annihilate();}, 200); }, 100); } annihilate();