Skip to content

Instantly share code, notes, and snippets.

@ip2soldier
ip2soldier / delete-youtube-comments.js
Last active January 27, 2023 19:46 — forked from andreyvolokitin/delete-youtube-comments.js
YouTube delete all comments and chat history
let __timeout = 200;
/**
* Delete comments: https://www.youtube.com/feed/history/comment_history
*/
document
.querySelectorAll(
'.ytd-comment-history-entry-renderer [aria-label="Action menu"]'
)
.forEach((el, i) => {