Greasy Fork is available in English.
Removes the terrible sponsored products/banners/suggested searches/etc from Etsy.
// ==UserScript==// @name Etsy - Sponsored Products remover// @namespace https://gfork.dahi.icu/en/users/2755-robotoilinc// @author RobotOilInc// @version 0.7.2// @license MIT// @description Removes the terrible sponsored products/banners/suggested searches/etc from Etsy.// @match http*://www.etsy.com/search?*// @match http*://etsy.com/search?*// @match http*://www.etsy.com/c/*// @match http*://etsy.com/c/*// @match http*://www.etsy.com/*/market/*// @match http*://etsy.com/*/market/*// @icon https://i.imgur.com/YYVvnud.png// @run-at document-body// ==/UserScript==new MutationObserver(function(mutationList, observer) {// Removed most loveddocument.querySelectorAll('[data-top-rated-narrowing-intent-search]').forEach(function(element) {console.log('Removed most loved', element);element.remove();});// Removed Etsys picksdocument.querySelectorAll('[data-etsys-pick-narrowing-intent-search]').forEach(function(element) {console.log(`Removed Etsy's Picks`, element);element.remove();});// Removed related searchesdocument.querySelectorAll('[data-search-query-ingresses]').forEach(function(element) {console.log('Removed related searches', element);element.remove();});// Removed "Ad by Etsy seller" search r###ltsdocument.querySelectorAll('[data-logger-id]').forEach(function(element) {const parent = element.closest('li.wt-list-unstyled');if(!parent) {return;}console.log('Removed Ad by Etsy seller', parent);parent.remove();});// Removed "Ad by X" in categoriesdocument.querySelectorAll('.v2-listing-card__info p').forEach(function(element) {if (!element.innerText.includes(' from shop ')) {return;}const style = window.getComputedStyle(element);if (style.width == "0px" || style.height == "0px" ){return;}const parent = element.closest('li.wt-list-unstyled');if(!parent) {return;}console.log('Removed Ad by X', parent);parent.remove();});// Removed ads in Marketdocument.querySelectorAll('h2[id^="ad-listing-title"]').forEach(function(element) {const parent = element.closest('li.wt-list-unstyled');if(!parent) {return;}console.log('Removed Ad in Market', parent);parent.remove();});}).observe(document.body, { childList: true, subtree: true });