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.
O que é Discord DM Hider?
Discord DM Hider é uma extensão do Chrome desenvolvida por lolsuffocate, e sua principal característica é "Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Discord DM Hider
Baixe arquivos de extensão Discord DM Hider no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | cmkbdgmbolkmfgoobmbkfojfhkgjlbbl |
URL Oficial | https://chromewebstore.google.com/detail/discord-dm-hider/cmkbdgmbolkmfgoobmbkfojfhkgjlbbl |
Descrição | Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings. |
Tamanho do Arquivo | 3.89 KB |
Contagem de Instalações | 16 |
Versão Atual | 1.0 |
Última Atualização | 2021-08-28 |
Data de Publicação | 2021-08-28 |
Desenvolvedor | lolsuffocate |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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": [] } |