Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name ocultar productos reservados
- // @namespace ocultar_productos_reservados
- // @version 2024-02-29
- // @description Ocultar los ítems con la etiqueta de reservado en la página de Wallapop
- // @author DIS MEANS WAR
- // @match https://es.wallapop.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=wallapop.com
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- function ocultarReservados() {
- const items = document.querySelectorAll("a.ItemCardList__item")
- for (const item of items) {
- try {
- if (item.childNodes[0].childNodes[0].childNodes[0].childNodes[0].childNodes[0].shadowRoot.childNodes[0].classList.contains("wallapop-badge--reserved")) {
- item.remove()
- }
- }
- catch(error) {
- continue
- }
- }
- }
- setInterval(ocultarReservados, 2000)
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement