shortcut for accessing tab menu in Google Chrome
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Quirky Dreamscape Looping
--
Chapters
00:00 Shortcut For Accessing Tab Menu In Google Chrome
00:23 Accepted Answer Score 1
00:34 Answer 2 Score 0
00:59 Answer 3 Score 8
01:42 Answer 4 Score 3
01:58 Thank you
--
Full question
https://superuser.com/questions/173364/s...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#googlechrome #keyboardshortcuts
#avk47
ANSWER 1
Score 8
On Windows and (most) Linux distros, you can use a built-in Chrome shortcut:
- F6 once to set focus to the omnibar
- F6 and again to set focus to the tab*
- (optionally Fn+) ≡ to open the tab context menu, assuming your keyboard has a key for it
* The docs describe the shortcut as:
Switch focus to unfocused dialog (if showing) and all toolbars
which suggests you might need to click a couple of times if another browser dialog is open - for instance the camera or notification permission
ANSWER 2
Score 3
Hitting F6 twice worked for me. I used this to then access the tab's right click menu (Shift+F10) to be able to access the new tab grouping features in Chrome entirely through keyboard shortcuts.
ACCEPTED ANSWER
Score 1
There isn't one for the menu I believe, however there are shortcuts for some of the separate actions though.
I suggest you look here: http://www.google.com/support/chrome/bin/static.py?page=guide.cs&guide=25799&topic=28650
ANSWER 4
Score 0
Here's an AutoHotkey script for it. It binds Win+F10 to the active tab's context menu.
Replace 0xffffff
with your Chrome theme's active tab color if it isn't white.
#If WinActive("ahk_exe chrome.exe")
#F10::
WinGetPos, ChromeX, ChromeY, ChromeWidth, ChromeHeight, A
PixelSearch, ActiveTabX, ActiveTabY, 0, 0, %ChromeWidth%, %ChromeHeight%, 0xffffff, 0, Fast RGB
if (ErrorLevel = 0)
{
Click, %ActiveTabX%, %ActiveTabY%, Right
}
Return
#If