Tophness / Aliexpress Plus

You need to consider different kind of currency in your script: if someone is using Euros (€) it will not work.
I just replaced all occurrences of '$' with the variable CURRENCY and now the script works.

Example:
ORIGINAL:

function formatPrice2(text){
return parseFloat(text.substring(text.indexOf('$') + 1));
}

MODIFIED:

//var CURRENCY = '$' ;
var CURRENCY = '€' ;

[...]

function formatPrice2(text){
return parseFloat(text.substring(text.indexOf(CURRENCY) + 1));
}