Discord Blocked Blocker

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

Что такое Discord Blocked Blocker?

Discord Blocked Blocker - это расширение Chrome, разработанное http://schuhardt.net, и его основная функция - "Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Discord Blocked Blocker

Скачайте файлы расширений Discord Blocked Blocker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Discord Blocked Blocker Discord Blocked Blocker
ID ppiplelhcflmhidelpnoipopdjniapbo
Официальный URL https://chrome.google.com/webstore/detail/discord-blocked-blocker/ppiplelhcflmhidelpnoipopdjniapbo
Описание Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.
Размер файла 36.63 KB
Количество установок 410
Текущая Версия 1.5
Последнее Обновление 2020-08-01
Дата публикации 2020-02-04
Рейтинг 3.91/5 Всего 23 оценок
Разработчик http://schuhardt.net
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/aschuhardt/Discord-Blocked-Blocker
Поддерживаемые языки 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"
    }
}