reddit.com: Disable endless scrolling

7/1/2025, 3:33:41 PM

2025-07-03 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name        reddit.com: Disable endless scrolling
// @namespace   Violentmonkey Scripts
// @author      klaufir216
// @license MIT
// @match       https://www.reddit.com/*
// @grant       none
// @version     1.0
// @description 7/1/2025, 3:33:41 PM
// ==/UserScript==


function getPartialElem() {
    return Array.from(document.querySelectorAll('faceplate-partial')).filter(e => e.getAttribute('src').startsWith('/svc/shreddit/community-more-posts/'))?.[0] // main page
        || Array.from(document.querySelectorAll('faceplate-partial')).filter(e => e.getAttribute('src').startsWith('/svc/shreddit/feeds/popular-feed'))?.[0]; // subreddit
}

function getArticleCount() {
  return document.querySelectorAll('article').length + document.querySelectorAll('div.virtualized-placeholder').length;
}

setInterval(function() {
  var partialElem = getPartialElem();
  if (partialElem) {
    var articleCount = getArticleCount();
    console.log('---- [Disable reddit autoload] articleCount == ', articleCount);
    if (articleCount > 50) {
      console.log('---- [Disable reddit autoload] Remove autoload element');
      partialElem?.remove();
    }
  }
}, 1000);