Discord Blocked Blocker

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

Was ist Discord Blocked Blocker?

Discord Blocked Blocker ist eine Chrome-Erweiterung, die von http://schuhardt.net entwickelt wurde, und ihr Hauptmerkmal ist "Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.".

Erweiterungsscreenshots

screenshot
screenshot

Discord Blocked Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Discord Blocked Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Discord Blocked Blocker Discord Blocked Blocker
ID ppiplelhcflmhidelpnoipopdjniapbo
Offizielle URL https://chrome.google.com/webstore/detail/discord-blocked-blocker/ppiplelhcflmhidelpnoipopdjniapbo
Beschreibung Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.
Dateigröße 36.63 KB
Installationsanzahl 410
Aktuelle Version 1.5
Letztes Update 2020-08-01
Veröffentlichungsdatum 2020-02-04
Bewertung 3.91/5 Insgesamt 23 Bewertungen
Entwickler http://schuhardt.net
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/aschuhardt/Discord-Blocked-Blocker
Unterstützte Sprachen 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"
    }
}