Qwant Endless Scrolling

Infinite scroll for Qwant.

目前為 2022-07-09 提交的版本,檢視 最新版本

// ==UserScript==
// @name            Qwant Endless Scrolling
// @namespace       ferkv
// @description     Infinite scroll for Qwant.
// @version         1.0
// @license         GNU GPLv3
//
// @match           https://www.qwant.com/*
// @grant           none
// ==/UserScript==


// Upon scrolling to the bottom of the page, press the show more button
window.onscroll = function(ev) {
    if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
        document.querySelector("button[data-testid='buttonShowMore']").click();
    }
};

QingJ © 2025

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