public void OpenDownloads()
 {
     KeyboardActions.SendKeysWithKeyHold("j", ModifierKey.Control);
 }
 public void OpenNewTab()
 {
     KeyboardActions.SendKeysWithKeyHold("n", ModifierKey.Control);
 }
 public void Close()
 {
     KeyboardActions.SendKeysWithKeyHold("w", ModifierKey.Control, mayDisappear: true);
 }