Discord DM Hider

Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.

Что такое Discord DM Hider?

Discord DM Hider - это расширение Chrome, разработанное lolsuffocate, и его основная функция - "Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.".

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

screenshot

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

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

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

                        A small extension to hide DM icons from the sidebar in Discord. Useful for streamers or work where other users with NSFW profile pics are a concern. 

NOTE: This does not block the notification sound for new messages, however these can be turned off in Discord's own settings.                    

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

Название Discord DM Hider Discord DM Hider
ID cmkbdgmbolkmfgoobmbkfojfhkgjlbbl
Официальный URL https://chromewebstore.google.com/detail/discord-dm-hider/cmkbdgmbolkmfgoobmbkfojfhkgjlbbl
Описание Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.
Размер файла 3.89 KB
Количество установок 16
Текущая Версия 1.0
Последнее Обновление 2021-08-28
Дата публикации 2021-08-28
Разработчик lolsuffocate
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Discord DM Hider",
    "description": "Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.",
    "version": "1.0",
    "content_scripts": [
        {
            "all_frames": true,
            "exclude_matches": [
                "*:\/\/*.discord.com\/*.html",
                "*:\/\/*.discord.com\/*.html?*",
                "*:\/\/*.discord.com\/*.htm",
                "*:\/\/*.discord.com\/*.htm?*"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.discord.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": []
}