YouTube Q點讚Press Q to like/cancel likes

Press Q to like/cancel likes

目前为 2023-12-30 提交的版本。查看 最新版本

// ==UserScript==
// @name         YouTube Q點讚Press Q to like/cancel likes
// @namespace    http://your.namespace.com
// @version      0.1
// @description  Press Q to like/cancel likes
// @author       You
// @match        https://www.youtube.com/watch*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    document.addEventListener('keydown', function(event) {
        if (event.keyCode === 81 ) {
            triggerLikeButton();
        }
    });

    function triggerLikeButton() {
        var likeButton = document.querySelector('button[title="我喜歡"]');
        if (likeButton) {
            likeButton.click();
        }
    }
})();