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或关注我们的公众号极客氢云获取最新地址