Converts data-href download links on hi10anime.com into normal href links, bypassing the ad site. Only works if at least 1 ad site link has the full download link.
< Commentaires sur Hi10anime Downloads De-Redirector
Needs some fixes:
instead of elem.dataset.href = new_clean_link;
elem.dataset.href = new_clean_link;
you should write it like this:
elem.removeAttribute('data-href'); elem.href = new_clean_link;
that way the links could be selected/copied.
Also you should include https://*.hi10anime.com/crimson-realm/* to matches to be able to download manga/LN/soundtrack the same way.
https://*.hi10anime.com/crimson-realm/*
Connectez-vous pour poster une réponse.
Needs some fixes:
instead of
elem.dataset.href = new_clean_link;
you should write it like this:
that way the links could be selected/copied.
Also you should include
https://*.hi10anime.com/crimson-realm/*
to matches to be able to download manga/LN/soundtrack the same way.