Files
vm-userscripts/Ucertify Tests F12 to Next Question.user.js
T
2026-06-15 14:20:38 -04:00

16 lines
419 B
JavaScript

// ==UserScript==
// @name Ucertify Tests F12 to Next Question
// @namespace Violentmonkey Scripts
// @match https://*ucertify.com/*
// @grant none
// @version 1.0
// @author -
// @description 2/4/2026, 2:39:45 PM
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/shortcut@1
// ==/UserScript==
function clickNexT(){
next.click()
}
VM.shortcut.register('F12', () =>
clickNexT()
);