keyboard shotcut like typracer

6.5.2021, 00:19:25

// ==UserScript==
// @name        keyboard shotcut like typracer
// @namespace   Violentmonkey Scripts
// @match       https://monkeytype.com/
// @grant       none
// @version     1.0
// @author      -
// @description 6.5.2021, 00:19:25
// ==/UserScript==

window.addEventListener("keydown", function(e){
    if(e.ctrlKey && e.altKey && e.key == "k"){
        document.getElementById("nextTestButton").click();
    }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址