|
|
|
|
|
by capableweb
1940 days ago
|
|
Others provide good reasons why it's not in place. But if you want it anyways, here's a snippet you can put in your browser JS console: (new IntersectionObserver(v => { if (v[0].isIntersecting) {document.querySelector(".morelink").click()}}, {rootMargin: "0px", threshold: 1})).observe(document.querySelector(".morelink"))
You'd have to rerun the snippet for each page load, so not quite effortless. Throw it into a browser extension content script and you'll get it truly infinite. |
|