How can I set a keyboard shortcut for accessing Chrome's settings?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Flying Over Ancient Lands
--
Chapters
00:00 How Can I Set A Keyboard Shortcut For Accessing Chrome'S Settings?
00:17 Accepted Answer Score 17
00:34 Answer 2 Score 11
00:51 Answer 3 Score 6
01:07 Answer 4 Score 2
01:22 Answer 5 Score 2
02:14 Thank you
--
Full question
https://superuser.com/questions/509161/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows7 #googlechrome #keyboardshortcuts
#avk47
ACCEPTED ANSWER
Score 17
You can select it with the menu shortcut. Alt+e will open the Chrome menu and then from there s will open Settings.
ANSWER 2
Score 11
There are actually three methods:
- Alt+F then press S
- Alt+E then press S
- F10 then Enter and then press S
ANSWER 3
Score 6
Use the clear browser cache shortcut key then escape
Ctrl+Shift+Delete then Esc
ANSWER 4
Score 2
Default shortcut on mac chrome is Cmd+,. There should be same or about same on other systems
ANSWER 5
Score 2
You can't do it within Chrome as they have not provide any shortcut for this in my knowledge (anyone can correct me if I'm wrong). You have to download the AutoHotKey and then install it on your system, now copy the following script and paste it on notepad and save it with extension .ahk
where you can access it easily, now when you launch the Chrome just launch it with that.
SetTitleMatchMode, RegEx
#IfWinActive, - Google Chrome$
^M::
ControlFocus, Chrome_OmniboxView1
Send chrome://chrome/settings/{Enter}
return
Now when you will press Ctrl+M then it will open the setting page for your Chrome. You can bind other key instead of M, you have to just repalce it with your desired one. Also If you want to use it with Alt key then replace the key ^ with !.
Edit: Also take a look at the Shortcut Manger plugin for Chrome.