LeBonCode

Améliore l'UX sur LebonCoin (affiche les téls, masque les annonces vendus et en cours d'achat)

Stan na 10-12-2022. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         LeBonCode
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Améliore l'UX sur LebonCoin (affiche les téls, masque les annonces vendus et en cours d'achat)
// @author       Yohann Nizon
// @match        https://www.leboncoin.fr/*
// @icon         https://www.leboncoin.fr/_next/static/media/favicon-16.fe104e12.png
// @grant        none
// @license MIT
// ==/UserScript==

let showPhone = true;
let showVendu = true;
let showAchat = true;

window.setInterval(function() {
    const phoneButtons = document.querySelectorAll('button[title="voir le numéro"]');

    if (phoneButtons && showPhone) {
        const delay = Math.floor(2000 + Math.random() * 1000); // Random delay between 2 et 3 seconds
        setTimeout(() => phoneButtons.forEach(button => button.click()), delay);
    }

    let nbRemove = 0;
    let mosaic = document.querySelectorAll('div[data-test-id=listing-mosaic]');
    if (mosaic.length == 1){
        for (const div of mosaic[0].childNodes) {
            if (div.innerText.indexOf('Vendu') > -1 && showVendu) {
                nbRemove++;
                div.remove();
            }
            if (div.innerText.indexOf('Achat en cours') > -1 && showAchat) {
                nbRemove++;
                div.remove();
            }
        }
    } else {
        let divs = document.getElementsByTagName('div');
        for (let div of divs) {
            if (div.className.indexOf('styles_adCard') > -1){
                if (div.innerText.indexOf('Vendu') > -1 && showVendu) {
                    nbRemove++;
                    div.remove();
                }
                if (div.innerText.indexOf('Achat en cours') > -1 && showAchat) {
                    nbRemove++;
                    div.remove();
                }
            }
        }
    }
    console.log(nbRemove + " annonce(s) supprimée(s)");
}, 1000);