Discord Blocked Blocker

Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.

Cos'è Discord Blocked Blocker?

Discord Blocked Blocker è un'estensione di Chrome sviluppata da http://schuhardt.net, e la sua funzione principale è "Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Discord Blocked Blocker

Scarica i file di estensione Discord Blocked Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        I created this extension after finding myself frustrated by Discord's "Block User" functionality.  The purpose of this tool is to completely hide the annoying "Blocked Message" messages that appear in IM when a blocked user says something.  Peace and quiet.

Source code (MIT Licensed) for this extension can be found here: https://github.com/aschuhardt/Discord-Blocked-Blocker.                    

Informazioni di Base sull'Estensione

Nome Discord Blocked Blocker Discord Blocked Blocker
ID ppiplelhcflmhidelpnoipopdjniapbo
URL Ufficiale https://chrome.google.com/webstore/detail/discord-blocked-blocker/ppiplelhcflmhidelpnoipopdjniapbo
Descrizione Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.
Dimensione del File 36.63 KB
Conteggio Installazioni 410
Versione Corrente 1.5
Ultimo Aggiornamento 2020-08-01
Data di Pubblicazione 2020-02-04
Valutazione 3.91/5 Totale 23 Valutazioni
Sviluppatore http://schuhardt.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/aschuhardt/Discord-Blocked-Blocker
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Discord Blocked Blocker",
    "version": "1.5",
    "description": "Hides the \"Blocked\" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/discord.com\/*"
            ],
            "css": [
                "hideBlockedDiscordUsers.css"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}