Created
May 2, 2022 10:24
-
-
Save samrayner/e527d1bdae08477b5e649f6296fe4bd9 to your computer and use it in GitHub Desktop.
Delete Github Comments
This file contains 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
Array.prototype.forEach.call(document.querySelectorAll('.timeline-comment-action'), function(el, i) { | |
el.click(); | |
}); | |
Array.prototype.forEach.call(document.querySelectorAll('button[aria-label="Delete comment"]'), function(el, i) { | |
el.removeAttribute('data-confirm'); | |
el.click(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment