adding to gitea repo

This commit is contained in:
Lucca Pirovano
2026-06-15 14:20:38 -04:00
commit cd7a2bd773
21 changed files with 1994 additions and 0 deletions
@@ -0,0 +1,16 @@
// ==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()
);