Reload page with free shipping selection and sorted price ascending
目前為
// ==UserScript==
// @name AliExpress
// @description Reload page with free shipping selection and sorted price ascending
// @namespace Violentmonkey Scripts
// @match https://www.aliexpress.com/wholesale
// @grant none
// @version 0.0.1.20190507150251
// ==/UserScript==
var oldOnload = window.onload;
var locHref = window.location.href;
var listSet = '&isFreeShip=y&SortType=price_asc';
var isSet = locHref.indexOf(listSet);
window.onload = function () {
if (typeof oldOnload == 'function') {
oldOnload();
}
if (isSet == -1) {
window.location.assign(locHref + listSet);
}
}