Allegro Infinite Scroll

Infinite Scroll for allegro.pl

  1. // ==UserScript==
  2. // @name Allegro Infinite Scroll
  3. // @description Infinite Scroll for allegro.pl
  4. // @version 1.1
  5. // @match *://allegro.pl/*
  6. // @require https://unpkg.com/infinite-scroll@3/dist/infinite-scroll.pkgd.js
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/428115
  9. // ==/UserScript==
  10.  
  11. (function(){
  12. var infiniteScroll = new InfiniteScroll( 'div[class^="opbox-listing--"] div section section', {
  13. //path: 'a.m-pagination__nav--next',
  14. path: 'a[data-role=next-page]',
  15. append: 'article[data-item="true"]',
  16. });
  17. })();