Back to Repository

a

0 upvotes
By waltersilva1656@gmail.com
Manual (context menu)

Match Pattern

https://web.whatsapp.com/*

Script Code

// roda quando carregar a página
window.addEventListener("load", () => {
    const mensagens = document.querySelectorAll('[data-testid="selectable-text"]');

    mensagens.forEach(el => {
        if (el.innerText.includes("paraguay")) {
            el.innerText = "🚫 censurado kkkkk";
        }
    });
});
Install requires the InjectJS Chrome extension. Scripts run only on sites matching the pattern above. Review code before installing any community script.