The Commands and Keybindings API allows extensions to register custom commands and associate them with keyboard shortcuts. This enables users to quickly trigger actions without using the mouse.
{ id: string, // Unique identifier for the command label: string, // Display name for the command function: () => void // Function to execute when command is triggered}