I think your task is ill-defined & what you have found so far overkill - (that this is because you are new to Mac means that's nothing to be ashamed of, we all start somewhere;) If all you need is to bring an app to the front & enable the location area you can do it in Applescript in 2 lines.
tell application "Google Chrome" to activate
tell application "System Events" to keystroke "l" using command down
perhaps with an optional delay 0.5 in between those lines in case it's a bit slow to come to the front.
The only difficulty is to make this key-commandable.
If you set this up as a Script event in Automator, then in previous OSes [I think up to Mojave, I haven't used anything newer] you could just define it as a Service. Once defined & saved, you can then call the Service using
System Prefs > Keyboard > Shortcuts > Services
I think this has changed since Catalina, but someone else would need to detail precisely how.
So long as you give it a shortcut that doesn't conflict with anything else, then simply hitting that shortcut will bring Chrome to the front [or launch it if it's not already running] & set the cursor into the search/location bar. It will do this on the current tab if one is already open, or make a new window if nothing was open.
activate "Google Chrome"to the head of the raise script, &keystroke "l" with command downto the end, then all you need do is add a keystroke for the whole thing saved as a Service. No 3rd party app required. – Tetsujin Mar 16 '21 at 19:02open -n -a 'Google Chrome.app'in Karabiner, I get the desired effect as well. – Aleksey Tsalolikhin Mar 16 '21 at 19:08open -n -a ...is a little slow though... takes longer to launch a new instance of Chrome than to open the current instance. =) – Aleksey Tsalolikhin Mar 16 '21 at 19:11