Using Code Snippets in Chrome Developer Tools

Table of Contents

Sources view in Chrome Developer Tools has a code snippets feature, kind of like a built-in text editor, that allows to write, debug, save and re-use code snippets.

Creating a code snippet

To get to code snippets:

  1. Open the Developer Tools
  2. Navigate to Sources at the top menu
  3. Select Snippets in the left menu (see the image above).
  4. Click on “New Snippet” button

Once the new snippet is created, it can be edited and debugged like any other JavaScript file.

Running a code snippet

Snippet can be run in two ways:

  1. By hitting the small play button to the bottom right of the snippet
  2. By hitting "Command + Enter" on Mac or "Control + Enter" on Windows

Debugging code snippets

Break points can be added into code snippets, just like any other JavaScript file loaded in Chrome Dev tools.

Quick access to snippets

Existing snippet can be opened through the source tab or by hitting a "Command + P" shortcut on Mac or "Control + P" on windows. This will open a fuzzy selector in which a snippet name can be entered.

Hitting "Command + Enter" on Mac or "Control + Enter" on Windows will execute the snippet.

Snippet use-cases

Snippets are great for ad-hoc prototyping and debugging.

In addition snippets can be used to save common debugging helper functions for quick re-use. There are libraries of snippets out there. One such library is code-snippets which, among other things, has a detailed page timing snippet and css layout snippet that draws boundary around every DOM element.

Do you have any snippets that you like to use? Please share in the comment area bellow.

8 thoughts on “Using Code Snippets in Chrome Developer Tools”

  1. Does the devtool snippet area add $(window)load(function) automatically to your snippet? When something works as a snippet for me and I move it to my site.js file it doesn’t work anymore unless i wrap it in a window or doc load. Thanks

  2. I love snippets tool as it saves so much time and let me reuse my previous code anytime.

    However, they should synchronize snippets to all logged-in chrome accounts. I can’t find the snippets I saved at home when I’m at work.

    • I tried to use down loaded ‘atom’ to run programs written in JavaScript and not getting why I am not able to run those, any idea please?

  3. Thanks Alex
    This makes my life a lot easier.
    Another tool to checkout is the chrome extension Requirify, which allows you to load modules from npm.

Comments are closed.