The Manual Upload Key command is now fully configurable. Users can turn the pre-set CMD+K shortcut on or off in settings. If users want to configure their own custom key command, they can add the following lister in their code:
window.addEventListener('keydown', (event) => {
if((event.ctrlKey || event.metaKey) && event.key === 'k'){
// Trigger the PlayerZero widget
playerzero.prompt()
}
})