Enhance your AliExpress shopping experience by converting marketing links into direct product links, ensuring each product is easily accessible with a single click.
< Feedback on AliExpress Product Link Fixer
Thanks! Implemented your fix!
Thanks, I updated my rating ;)
Nice script +1
But there is a minor issue that make all ssr link turn to 404, because the productId is value like : xxxxx:xxxxx, you only want the first part.
I edited the script like that :
a.href = `https://${url.host}/item/${pid.split(':')[0]}.html`;
And it work just fine ;)