Em resposta ao comentário do AHK, aqui está um script que faz exatamente o que você pediu.
Mesmo que você considere um "trabalho em volta", ele funciona exatamente como você queria. Abre páginas pré-definidas no chrome com o uso de uma tecla de atalho. Quem se importa com quem o exe?
; Only allow 1 instance of the script to run
#SingleInstance, Force
return
; Hotkeys past here only work when chrome.exe is the active window.
#IfWinActive, ahk_exe chrome.exe
; Press F1 while in chrome...
F1::
; To run chrome at the specified address.
Run, % "chrome.exe https://superuser.com/questions/1212547/how-to-add-custom-keyboard-shortcuts-to-chrome/"
return
; Press F2 while in chrome...
F2::
; Open a new tab.
Send, ^t
Sleep, 100
; And then send this reddit's AHK help forum, plus the enter key, to the address bar.
SendInput, www.reddit.com/r/autohotkey{Enter}
; Hotkeys past this will work globally
#IfWinActive