Are there any way of adding short key for capturing screenshots in Google Chrome?
Asked
Active
Viewed 2,487 times
13
-
3I need this as well. I don't want to lose focus on an input when taking the screenshot, but that doesn't seem to be possible. Using DevTools to force focus on the input isn't giving me the proper styling either. – Splaktar Jul 16 '17 at 04:26
-
2I opened https://crbug.com/743765 to request that a standard hotkey be created for this since 174309 is more focused on customizing existing shortcuts. First we would need to have a default shortcut to be able to customize it. – Splaktar Jul 16 '17 at 04:40
-
@Splaktar It's now possible by enabling _focused page_ from the Rendering tab: https://stackoverflow.com/a/65188771/5846045 – Boghyon Hoffmann Dec 07 '20 at 20:18
-
What is the use case of the shortcut? Why was it needed in the first place? Is it to keep the focus on the UI while taking a screenshot? We need more context in the question. – Boghyon Hoffmann Jul 10 '21 at 16:15
3 Answers
7
I work on the DevTools team. There's no keyboard shortcut for it, and there's no way to add custom keyboard shortcuts.
But you can access it from the Command Menu.
- Open the Command Menu.
- Start typing
Screenshots
and selectCapture full size screenshot
.

Kayce Basques
- 23,849
- 11
- 86
- 120
-
1It's a pity that you can't configure any of the four screenshot options with a hotkey. They seem to be listed under Settings->Shortcuts but with no apparent way to setup a shortcut. FWIW Mozilla have a screenshot icon you can add to the menu. Click on it and you get an area screenshot - simple. – timbo Sep 01 '22 at 21:38
5
Long list but fastest execution when learned:
- press CTRL+SHIFT (keep them pressed)
- press i (opens Chrome development tools)
- press p (opens the Command Menu)
- release CTRL+SHIFT
- write "re s" (selects "Capture screenshot" command)
- press Enter (executes the command and downloads the captured screenshot)
Variants of step n. 5:
- write "cfu" (selects "Capture full size screenshot" command)
- write "caph" (selects "Capture area screenshot" command)
- write "cnod" (selects "Capture node sreenshot" command)

Protector one
- 6,926
- 5
- 62
- 86

Christian Toffolo
- 421
- 7
- 14
2
To take a screenshot while the page having the focus (hence the need for shortcuts):
In the DevTools, open the command menu, type
Rendering
, and select "Show Rendering":In the Rendering tab, enable ☑️Emulate a focused page:
Now you can take screenshots as described in the doc but without the need to use shortcuts:

Boghyon Hoffmann
- 17,103
- 12
- 72
- 170