|
|
|
|
|
by robbrown451
2307 days ago
|
|
You can paste something like this into your javascript console: setInterval(function() { window.scrollTo(0, document.body.scrollHeight); },
2000); That will scroll continuously, so you can let it run for a while and then do ctrl-F. It might take a while but you can do something else. I've used it successfully many times (usually when I wanted to scrape the DOM for some reason or another, rather than just do a search). |
|