Skip to content

Instantly share code, notes, and snippets.

View fersandiP's full-sized avatar

Fersandi Pratama fersandiP

  • Indonesia
View GitHub Profile
@fersandiP
fersandiP / script.js
Last active July 8, 2021 04:47
Script to delete tweets automatically from your browser
// Open your tweet pages (Tweets, Tweets & replies, or Media)
// Execute this script in the console
// Tested on Chrome Version 91.0.4472.114 (Official Build) (x86_64) MacOS
// If the script stopped, refresh the page and execute it again
var tweets = document.querySelectorAll('[data-testid="tweet"]');
while (tweets.length > 0) {
tweets.forEach(function(tweet){