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.

Qu'est-ce que Discord DM Hider ?

Discord DM Hider est une extension Chrome développée par lolsuffocate, et sa fonction principale est "Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Discord DM Hider

Téléchargez les fichiers d'extension Discord DM Hider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Discord DM Hider Discord DM Hider
ID cmkbdgmbolkmfgoobmbkfojfhkgjlbbl
URL Officiel https://chromewebstore.google.com/detail/discord-dm-hider/cmkbdgmbolkmfgoobmbkfojfhkgjlbbl
Description Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.
Taille du Fichier 3.89 KB
Nombre d'Installations 16
Version Actuelle 1.0
Dernière Mise à Jour 2021-08-28
Date de Publication 2021-08-28
Développeur lolsuffocate
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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": []
}