Run snippets of JavaScript on any webpage
If you are running the same code in the Console repeatedly, consider saving the code as a Snippet instead. Snippets are scripts that you author in the Sources tool. Snippets have access to the JavaScript context of the webpage, and you can run Snippets on any webpage. The security settings of most webpages block from loading other scripts in Snippets. For that reason, you must include all your code in one file.
Snippets are an alternative to bookmarklets with the difference that Snippets only run in DevTools and aren't limited to the allowed length of a URL.
Using Snippets is an excellent way to change a few things in a third-party webpage. Code changes in Snippets are added to the current webpage and run in the same context. For more information about changing the existing code of a webpage, see Overrides.
The following figure shows the DevTools homepage on the left and some Snippet source code on the right.
The webpage before running the Snippet:
The Snippet source code from the webpage before running the Snippet:
console.log('Hello, Snippets!');
document.body.innerHTML = '';
var p = document.createElement('p');
p.textContent = 'Hello, Snippets!';
document.body.appendChild(p);
In the following figure, the webpage appears after running the Snippet. The Console Drawer pops up to display the Hello, Snippets!
message that the Snippet logs, and the content of the webpage changes completely:
Open the Snippets tab
The Snippets tab, in the Navigator pane on the left, lists your Snippets. When you want to edit a Snippet, you need to open it from the Snippets tab:
Open the Snippets tab with a mouse
Select the Sources tab. The Sources tool appears:
In the Navigator pane (on the left), select the Snippets tab. To access the Snippets option, you might need to click the More tabs (
) button.
Open the Snippets tab with the Command Menu
Select anything in DevTools, so that DevTools has focus.
Press
Ctrl
+Shift
+P
(Windows, Linux) orCommand
+Shift
+P
(macOS) to open the Command Menu.Type
Snippets
, select Show Snippets, and then pressEnter
to run the command:
Create Snippets
Create a Snippet through the Sources tool
Click New snippet.
Enter a name for your Snippet, and then press
Enter
:
Create a Snippet through the Command Menu
Focus your cursor somewhere in DevTools.
Press
Ctrl
+Shift
+P
(Windows, Linux) orCommand
+Shift
+P
(macOS) to open the Command Menu.Start typing
snippet
, select Create new snippet, and then pressEnter
:
To rename your new Snippet with a custom name, see Rename Snippets.
Edit Snippets
In the Snippets tab, select the name of the Snippet that you want to edit. The Snippet opens in the Code Editor:
Use the Code Editor to add JavaScript to your Snippet.
When an asterisk appears next to the name of your Snippet, it means you have unsaved code. Press
Ctrl
+S
(Windows, Linux) orCommand
+S
(macOS) to save:
Run Snippets
Run a Snippet from the Sources tool
Click the name of the Snippet that you want to run. The Snippet opens in the Code Editor:
Click Run snippet (
).
Run a Snippet with the Command Menu
Focus your cursor somewhere in DevTools.
Press
Ctrl
+Shift
+P
(Windows, Linux) orCommand
+Shift
+P
(macOS) to open the Command Menu.Delete the
>
character and type the!
character followed by the name of the Snippet that you want to run:Press
Enter
to run the Snippet.
Rename Snippets
Right-click the Snippet name, and then select Rename.
Delete Snippets
Right-click the Snippet name, and then select Remove.
Save Snippets
By default, Snippets are only available within DevTools, but you can also save them to disk.
Right-click the Snippet name, and then select Save as.
Enter a file name and location when prompted.
Note
Portions of this page are modifications based on work created and shared by Google and used according to terms described in the Creative Commons Attribution 4.0 International License. The original page is found here and is authored by Kayce Basques (Technical Writer, Chrome DevTools & Lighthouse).
This work is licensed under a Creative Commons Attribution 4.0 International License.
Feedback
Submit and view feedback for