Skip to content

Instantly share code, notes, and snippets.

@lharby
Created September 24, 2024 14:59
Show Gist options
  • Save lharby/1a06cd9a1c066172da43acf6015bd1fa to your computer and use it in GitHub Desktop.
Save lharby/1a06cd9a1c066172da43acf6015bd1fa to your computer and use it in GitHub Desktop.
Bookmarklet to initialise a debugger
/**
* A bookmarklet to init a debuuger after X seconds
* You can use https://caiorss.github.io/bookmarklet-maker/ to turn this into a minified bookmarklet
*/
/**
* Open the console and run this bookmarklet
* It will wait 2 seconds and then initialise the debugger
*/
setTimeout(() => {
debugger;
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment