// ==UserScript== //@match https://aliexpress.com/* // @name Aliexpress sort by price // @description Sort by price by one click // @run-at context-menu // @version 0.1 // @author http://kulam.pl // @homepage http://kulam.pl // @icon http://i.imgur.com/R5IP5KN.png // @namespace https://greasyfork.org/users/62973 // @downloadURL none // ==/UserScript== var targethost = "aliexpress.com"; //mozesz zmienic na "pl.aliexpress.com" var freeshipping= "no"; //wyszukiwanie z darmowa wysylka, wartosci "yes" lub "no" var pa=window.location.pathname; if(pa.slice(0,7)=="/store/") var number=pageConfig.storeId; if(pa.slice(0,6)=="/item/") var number=hid_storeId.value; var locationPathname = location.pathname.split('/'); if(freeshipping=="yes") window.location.replace(window.location.protocol+'//'+targethost+"/store/"+number+'/search?SortType=price_asc&isFreeShip=y&'+window.location.search+window.location.hash); else window.location.replace(window.location.protocol+'//'+targethost+"/store/"+number+'/search?SortType=price_asc&'+window.location.search+window.location.hash);