Indeed Infinite Scroll

Auto-load next page when scrolled to the bottom for job listings

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Indeed Infinite Scroll
// @namespace    https://greasyfork.org/en/users/50935-neonhd
// @author       Prismaris
// @version      1.0
// @description  Auto-load next page when scrolled to the bottom for job listings
// @match        *://*.indeed.com/*
// @grant        none
// @run-at       document-idle
// @license MIT
// ==/UserScript==

(function () {
  let isLoading = false;

  const loadNextPage = () => {
    if (isLoading) return;

    const nextBtn = document.querySelector('a[data-testid="pagination-page-next"]');
    if (!nextBtn) return;

    isLoading = true;
    nextBtn.click();

    const observer = new MutationObserver((mutations, obs) => {
      const newCards = document.querySelectorAll('.jobsearch-LeftPane .tapItem');
      if (newCards.length > 0) {
        isLoading = false;
        obs.disconnect();
      }
    });

    const container = document.querySelector('#mosaic-provider-jobcards ul');
    if (container) {
      observer.observe(container, { childList: true, subtree: true });
    } else {
      isLoading = false;
    }
  };

  const onScroll = () => {
    const scrollY = window.scrollY;
    const viewportHeight = window.innerHeight;
    const fullHeight = document.documentElement.scrollHeight;

    const atBottom = scrollY + viewportHeight >= fullHeight - 2;

    if (atBottom) {
      loadNextPage();
    }
  };

  window.addEventListener('scroll', onScroll);
})();