>>106744037
i took a look at that, and it is at least clean. i mean, i was expecting it to insert/inject some referal code along with the redirect, but, at least on version 2.0.0, it does nothing, it just replaces product urls without any extra parameters.
i copied it into a quick clusterfuck and completely UNTESTED userscript
// ==UserScript==
// @name AliExpress Bundle deals Redirect
// @namespace none
// @description Automatically redirects AliExpress Bundle deals page to their corresponding item pages. Based on https://chromewebstore.google.com/detail/aliexpress-bundle-deals-r/ibgiefiobicodfhkglfpfkfmccbpknan
// @include https://www.aliexpress.com/ssr*
// @include https://www.aliexpress.com/gcp*
// @version 2.0.0
// @grant none
// ==/UserScript==
const productIds = url.searchParams.get("productIds").split(":")[0];
if (! productIds)
return;
const newUrl = `https://www.aliexpress.com/item/${productIds}.html`;
window.location.href = newUrl;
have fun it if works as it, or fix it up if it doesnt