Skip to content

Instantly share code, notes, and snippets.

@raveren
Last active October 1, 2020 12:42
Show Gist options
  • Save raveren/69b887da03e3113f1446a874992c0bf9 to your computer and use it in GitHub Desktop.
Save raveren/69b887da03e3113f1446a874992c0bf9 to your computer and use it in GitHub Desktop.
Show all your orders on one page in Aliexpress
// ==UserScript==
// @name Aliexpress show all orders
// @namespace none
// @version 0.1
// @date 2019-12-11
// @description Add new option to the 'Display items per page:' dropdown
// @author raveren
// @match *.aliexpress.com/orderList.htm*
// @match *.aliexpress.com/order_list.htm*
// @icon https://ae01.alicdn.com/images/eng/wholesale/icon/aliexpress.ico
// @downloadURL https://gist.github.com/raveren/69b887da03e3113f1446a874992c0bf9/raw/show-all-aliexpress-orders.user.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById('full-pager-page-size').add(new Option(1000))
document.getElementById('simple-pager-page-size').add(new Option(1000))
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment