Removes the terrible sponsored products from Amazon.
< Feedback on Amazon Sponsored Products remover
Remove the sponsored carousels on product pages as well:
document.querySelectorAll('.sp_desktop_sponsored_label').forEach(function(element) { var parent = element.closest('.a-carousel-container'); if (parent) parent.remove(); });
I've released 0.2.1 with this change. Sorry that it took so long, I apparently didn't have notifications enabled.
Sign in to post a reply.
Remove the sponsored carousels on product pages as well: