Google Chrome does not yet offer customizable keyboard shortcuts. In the mean time, we can use AutoHotKey for setting keyboard shortcuts to common tasks like switching to previous and next tabs, going back and forward in the history, closing and un-doing last closed tab.

Update #1: Added code for opening a new tab by pressing CAPS key. This works even if Chrome is not open or not the current active application. If you want CAPS lock to work again, simply press Shift+CAPS. i.e., Shift+CAPS toggles between default functionality of the CAPS lock and tab opening in Chrome.
Update #2: Added Windows key modifier to single keys a, s, z, x, and c
Update # 3: Added shortcuts for paste and go. Details here.
This is what we are going to set:
| Key |
Action |
| Win+a or F1 |
Switch to previous tab |
| Win+s or F2 |
Switch to next tab |
| Win+z |
Go back |
| Win+x |
Go forward |
| Win+c or F4 |
Close current tab |
| Win+v |
Paste and go |
| Win+Alt+v |
Paste and go in a new tab |
| F12 |
Undo last tab |
| CAPS |
Switch to Chrome and create a new tab (If Chrome isn’t already running, it opens Chrome first) |
and the steps to follow are:
- Download AutoHotKey and install it if you don’t have it already.
- Save this (or this for Vista) small ChromeShortcuts.ahk file (the contained code can be found at the bottom of this post) and place it anywhere in your computer. Double click this .ahk file.
That’s it. Now you can use all the shortcuts mentioned in the above table while using Google Chrome.
Note: You should remove --no-sandbox from line 33 of the .ahk file if your Chrome has no problems in displaying web pages.
Contents of the ChromeShortcuts.ahk file:
» Read the rest of the entry..