Dislike all comments in a YouTube video

console-script

Originally posted as GitHub Gist on 07 Sep 2019 , updated at 13 Sep 2019 (details)


Source: https://gist.github.com/paulera/e78fa4118b7e8dc46ae507e241c1a9e5

Description: Snippet to dislike all comments in a Youtube video


dislike-all-comments.js

1
2
3
4
5
6
7
8
9
/**
 * 1. Open a youtube video
 * 2. Keep scrolling down unitl all comments are shown
 * 3. Right click
 * 4. Select inspect
 * 5. Open the Console tab
 * 6. Copy and paste the code below and press enter
**/
document.querySelectorAll("ytd-toggle-button-renderer#dislike-button").forEach(function(elem) { elem.click(); });