Double Click to Like YouTube Comments

Double click on a comment to like. Double click again to remove like.

Från och med 2021-07-01. Se den senaste versionen.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Double Click to Like YouTube Comments
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Double click on a comment to like. Double click again to remove like.
// @author       49ta
// @match        *://*.youtube.com/*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require      https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=19641
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    window.addEventListener('load', () => {
        var cmtSection = "#sections";

        waitForKeyElements(cmtSection, () => {
            document.querySelector(cmtSection).addEventListener('mousedown', (e) => {
                if (e.detail > 1 && e.target.id != "contenteditable-root") e.preventDefault()
            });
        });

        var cnt = 0;
        var cmt = "ytd-comment-renderer";

        waitForKeyElements(cmt, () => {
            function addDbl() {
                var item = document.querySelectorAll(cmt)[cnt];

                item.addEventListener('dblclick', (e) => {
                    if (e.target.id != "contenteditable-root") event.target.closest(cmt).querySelector("#like-button").click()
                });

                cnt++;
            };

            addDbl();
        });
    });
})();