Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kishorys/310e790a742a3b0069c4741c1633d26d to your computer and use it in GitHub Desktop.
Save kishorys/310e790a742a3b0069c4741c1633d26d to your computer and use it in GitHub Desktop.
Chrome: pause before redirect
// Run this in the F12 javascript console in chrome
// if a redirect happens, the page will pause
// this helps because chrome's network tab's
// "preserve log" seems to technically preserve the log
// but you can't actually LOOK at it...
// also the "replay xhr" feature does not work after reload
// even if you "preserve log".
window.addEventListener("beforeunload", function() { debugger; }, false)
## Fetch loadsh from console
```javascript
fetch('https://cdn.jsdelivr.net/npm/[email protected]/lodash.min.js')
.then(response => response.text())
.then(text => eval(text))
```
## Fetch moment js frmo console
fetch('https://momentjs.com/downloads/moment.min.js')
.then(response => response.text())
.then(text => eval(text))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment