Indeed Infinite Scroll

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

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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);
})();