sAs59
sAs59

Reputation: 572

Chrome - Configure screenshot hot key

Are there any way of adding short key for capturing screenshots in Google Chrome?

enter image description here

Upvotes: 14

Views: 4626

Answers (3)

Boghyon Hoffmann
Boghyon Hoffmann

Reputation: 18064

To take a screenshot while the page having the focus (hence the need for shortcuts):

  1. In the DevTools, open the command menu, type Rendering, and select "Show Rendering":

    Chromium "Command Menu" typing "Rendering" dark theme

  2. In the Rendering tab, enable ☑️Emulate a focused page:

    Chrome devtools panel Rendering with "Emulate a focused page" highlighted

  3. Now you can take screenshots as described in the doc but without the need to use shortcuts:

    Chrome devtools taking screenshot with emulated focus on the OpenUI5 page


Since Chrome 123, the "Emulate a focused page" setting can be activated also from the Elements > Styles area.

"Emulate a focused page" setting in Chrome DevTools Elements > Styles Source: What's New in DevTools (Chrome 123)

Upvotes: 3

Webian.it
Webian.it

Reputation: 450

Long list but fastest execution when learned:

  1. press CTRL+SHIFT (keep them pressed)
  2. press i (opens Chrome development tools)
  3. press p (opens the Command Menu)
  4. release CTRL+SHIFT
  5. write "re s" (selects "Capture screenshot" command)
  6. 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)

Upvotes: 7

Kayce Basques
Kayce Basques

Reputation: 25957

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.

  1. Open the Command Menu.
  2. Start typing Screenshots and select Capture full size screenshot.

Upvotes: 8

Related Questions