Qwant Endless Scrolling

Infinite scroll for Qwant.

  1. // ==UserScript==
  2. // @name Qwant Endless Scrolling
  3. // @namespace ferkv
  4. // @description Infinite scroll for Qwant.
  5. // @version 1.0
  6. // @license GNU GPLv3
  7. //
  8. // @match https://www.qwant.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13. // Upon scrolling to the bottom of the page, press the show more button
  14. window.onscroll = function(ev) {
  15. if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
  16. document.querySelector("button[data-testid='buttonShowMore']").click();
  17. }
  18. };

QingJ © 2025

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