Right Control + O => Open URL
Right Control + [Web key] => Open a search bar
Tab / Shift + Tab => Change browser
Right Alt / Alt Gr => Toggle private search
Left Alt => Toggle multiline search
Enter => Submit search
Control + Enter => Submit multiline search
Leave the input blank to open the home page instead of performing a search
📌 Check the 'Main.ahk' script to see all the predefined hotkeys
; 'en' | 'es' | 'de' | 'ja' ...
TranslationTargetLang := "en"
; ("Name", ".exe")
Waterfox := BrowserClass("Waterfox", "waterfox")
LibreWolf := BrowserClass("LibreWolf", "C:\Program Files\LibreWolf\librewolf.exe")
; Edge | Firefox | LibreWolf | Chrome | Vivaldi ...
DefaultBrowser := Edge
- Title: Must match the icon name, without extension. Case insensitive.
- HomeURL: It will be open when the text box is blank.
- SearchURL: The value of 'Website.TermTemplate' will be replaced with the search term.
ExampleWeb := Website(
"ExampleWeb",
"https://example.com",
"https://example.com/search_query=" Website.TermTemplate "&order=ASC"
)
; Right Control + X => Search in ExampleWeb
>^X Up:: ShowSearchBar(ExampleWeb)
; Right Control + A => Open Azure in a private Firefox window
>^A Up:: OpenURL('https://azure.microsoft.com', Firefox, True)
Mozilla iconos created by Freepik - Flaticon
Image icons created by Good Ware - Flaticon
Youtube icons created by riajulislam - Flaticon
External link icons created by Bharat Icons - Flaticon
Search icons created by Chanut - Flaticon
Translator icons created by Freepik - Flaticon
Google icons created by Freepik - Flaticon





