I'm tired of re-typing the same commands into Chrome's developer console. Is it possible to load a script that I have saved on my local machine?
Right-click in a webpage and then select Inspect. DevTools opens. Or, press Ctrl + Shift + J (Windows, Linux) or Command + Option + J (macOS), to directly open the DevTools console. If necessary, click in DevTools to give it focus, and then press Esc to open the Console.
If you're running developer tools on a file:// URL, you can do something like:
s = document.createElement('script');
s.src = 'file://path/to/script.js';
document.body.appendChild(s);
As a workaround you could also paste in your oft-repeated code snippet into the developer tools.
As @PaulIrish pointed out in the comments Chrome's Snippets
are their solution to this problem. This screenshot below shows were to find snippets within Chrome's developer tools as of this writing. To run a snippet right click on its entry in the snippet pane, pictured on the left, and select "Run":
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With