16 lines
419 B
JavaScript
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()
|
|
); |