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
+31
View File
@@ -0,0 +1,31 @@
// ==UserScript==
// @name Fast Timesheets
// @namespace Violentmonkey Scripts
// @grant none
// @version 1.0
// @author -
// @match https://wd5.myworkday.com/*
// @description 2/3/2026, 1:18:01 PM
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/shortcut@1
// ==/UserScript==
function clickThing(){
document.querySelector("[data-automation-id='promptIcon']").click();
//document.querySelector("[data-automation-id='promptSearchButton']").click();
}
function clickThing2(){
document.querySelector("[data-automation-label='Regular Hours Worked']").click();
}
function clickThing3(){
document.querySelectorAll("[data-automation-id='wd-CommandButton']")[4].click()
}
VM.shortcut.register('F1', () =>
clickThing()
);
VM.shortcut.register('F2', () =>
clickThing2()
);
VM.shortcut.register('F3', () =>
clickThing3()
);