Removes the terrible sponsored products from Amazon.
< Обсуждения Amazon Sponsored Products remover
Tweaks
Include Amazon Smile:
// @include http*://smile.amazon.com/*
I rewrote without deprecated DOM Mutation Events and without jQuery:
new MutationObserver(function(mutationList, observer) { document.querySelectorAll('[data-component-type="sp-sponsored-result"]').forEach(function(element) { var parent = element.closest('[data-asin]'); if (parent) parent.remove(); }); }).observe(document.body, {childList: true, subtree: true});
Sorry for the late reply, I never received an email about this. I've added Smile and updated the script. Thank you very much for your contribution!
Войдите, чтобы ответить.
Tweaks
Include Amazon Smile:
I rewrote without deprecated DOM Mutation Events and without jQuery: