Discord Blocked Blocker

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

Vad är Discord Blocked Blocker?

Discord Blocked Blocker är en Chrome-tillägg utvecklad av http://schuhardt.net, och dess huvudfunktion är "Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Discord Blocked Blocker-förlängningens CRX-fil

Ladda ner Discord Blocked Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Discord Blocked Blocker Discord Blocked Blocker
ID ppiplelhcflmhidelpnoipopdjniapbo
Officiell webbadress https://chrome.google.com/webstore/detail/discord-blocked-blocker/ppiplelhcflmhidelpnoipopdjniapbo
Beskrivning Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.
Filstorlek 36.63 KB
Antal Installationer 410
Aktuell Version 1.5
Senast Uppdaterad 2020-08-01
Publiceringsdatum 2020-02-04
Betyg 3.91/5 Totalt 23 Betyg
Utvecklare http://schuhardt.net
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/aschuhardt/Discord-Blocked-Blocker
Stödda Språk 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"
    }
}