Greasy Fork is available in English.

Q to Accept Quiz

Adds a keyboard shortcut to start quizzes!

// ==UserScript==
// @name         Q to Accept Quiz
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Adds a keyboard shortcut to start quizzes!
// @author       Me
// @match        https://bunpro.jp/learn
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.addEventListener('keyup', function (e) {
        if (e.code !== 'KeyQ') return;
        let btn = document.querySelector('#start-quiz');
        if (!btn) return;
        btn.click();
    });
})();