J'utilise ça quand le script est pas activé ça marche nickel
document.querySelectorAll('img.img-shack').forEach(img => {
const match = img.alt.match(/^https?:\/\/www\.noelshack\.com\/(\d+)-(\d+)-(\d+)-(.+)$/);
if (match) {img.alt = `https://image.noelshack.com/fichiers/${match[1]}/${match[2]}/${match[3]}/${match[4]}`;}
img.src = img.alt = img.closest('a').href = img.alt;
});
Mais c'est pas compatible jsp pq