您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto-load next page when scrolled to the bottom for job listings
// ==UserScript== // @name Indeed Infinite Scroll // @namespace https://greasyfork.org/en/users/50935-neonhd // @author NeonHD // @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); })();