// ==UserScript== // @name Pagerize eBay // @description Mark up eBay search results with pager metadata // @author chocolateboy // @copyright chocolateboy // @version 0.2.2 // @namespace https://github.com/chocolateboy/userscripts // @license GPL: https://www.gnu.org/copyleft/gpl.html // @include http://*.ebay.tld/* // @include https://*.ebay.tld/* // @require https://code.jquery.com/jquery-3.5.1.slim.min.js // @require https://cdn.jsdelivr.net/gh/chocolateboy/jquery-pagerizer@v1.0.0/dist/pagerizer.min.js // @grant GM_log // ==/UserScript== // XXX note: the unused grant is a workaround for a Greasemonkey bug: // https://github.com/greasemonkey/greasemonkey/issues/1614 $('a.gspr.prev').addRel('prev'); $('a.gspr.next').addRel('next');