Google Infinite Scroll

-

< 脚本Google Infinite Scroll的反馈

评价:一般 - 脚本能用,但还有一些问题

§
发表于:2025-03-04

In order to get this script to work on the News tab on Google, replace this in the fetchNextPage function:

const text = await (await fetch(`${baseUrl.origin}${baseUrl.pathname}?q=${baseUrl.searchParams.get('q')}&start=${pageNumber * 10}`)).text();

with this:

baseUrl.searchParams.set('start', pageNumber * 10);
const text = await (await fetch(baseUrl.toString())).text();

发表回复

登录(不可用)以发表回复。

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址