Last active
February 17, 2020 23:21
-
-
Save eat-sleep-code/d9acc56890c53d429e0a1c4c7c15457d to your computer and use it in GitHub Desktop.
Clear Yahoo Mail Inbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.setInterval(function(){ | |
var element = document.querySelector('[aria-label="Select message"]').click(); | |
window.setTimeout(function(){},1000); | |
document.querySelector('[data-test-id="toolbar-delete"]').click(); | |
window.setTimeout(function(){},1000); | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment