Adds keyboard shortcuts [ and ] for liking and disliking videos, and s for skipping pre-video and banner ads.
< Feedback on Youtube like/dislike video and skip ad keyboard shortcuts
Hi, I like the script. Just a fix for last youtube's version to this date on the functionality of liking/disliking videos.Inside function findButtons change the like buttons logic to:videoinfo = document.getElementById("segmented-buttons-wrapper"); if(videoinfo) { buttons = videoinfo.getElementsByTagName("button"); like = buttons[0]; dislike = buttons[1]; } else { like = null; dislike = null; }
Sign in to post a reply.
Hi, I like the script. Just a fix for last youtube's version to this date on the functionality of liking/disliking videos.
Inside function findButtons change the like buttons logic to:
videoinfo = document.getElementById("segmented-buttons-wrapper");
if(videoinfo) {
buttons = videoinfo.getElementsByTagName("button");
like = buttons[0];
dislike = buttons[1];
}
else {
like = null;
dislike = null;
}