Storeparser Pagination

Copy the pagination controls to the bottom of the page as well

  1. // ==UserScript==
  2. // @name Storeparser Pagination
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Copy the pagination controls to the bottom of the page as well
  6. // @author AJ
  7. // @match http://www.storeparser.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. $('#sp_control_bar_container').clone(true).appendTo('#sp_products_container');
  13. })();