Files
2026-06-15 14:20:38 -04:00

32 lines
866 B
JavaScript

// ==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()
);