Skip to content

Instantly share code, notes, and snippets.

@delqn
Created June 16, 2019 04:54
Show Gist options
  • Save delqn/5e0e8bc9dbd76616ea230cc1ea1d1fa3 to your computer and use it in GitHub Desktop.
Save delqn/5e0e8bc9dbd76616ea230cc1ea1d1fa3 to your computer and use it in GitHub Desktop.
Delete Messages from Gmail -- GreaseMonkey script
// ==UserScript==
// @name Unnamed Script 525870
// @version 1
// @grant none
// @match https://mail.google.com/mail/u/0/*
window.addEventListener('load', function() {
for(let x of document.getElementsByName('t')) {
console.log(x);
x.click();
}
document.querySelector('[value=Delete]').click()
}, false);
// ==/UserScript==
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment