Last active
October 1, 2020 12:42
-
-
Save raveren/69b887da03e3113f1446a874992c0bf9 to your computer and use it in GitHub Desktop.
Show all your orders on one page in Aliexpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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