Discord Enhancer

This extension will allow you to hide server/channel/member list on Discord

O que é Discord Enhancer?

Discord Enhancer é uma extensão do Chrome desenvolvida por dr_ph4nt0m, e sua principal característica é "This extension will allow you to hide server/channel/member list on Discord".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Discord Enhancer

Baixe arquivos de extensão Discord Enhancer 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

                        If you like to keep discord open while working on other stuff, this extension will allow you to hide the server list, channel list and member list for the discord.com website. This will allow to keep the window as small as possible without loosing the main message part of the website.                    

Informações Básicas da Extensão

Nome Discord Enhancer Discord Enhancer
ID pcmklkffcneafillgbbpphkkofelpedo
URL Oficial https://chrome.google.com/webstore/detail/discord-enhancer/pcmklkffcneafillgbbpphkkofelpedo
Descrição This extension will allow you to hide server/channel/member list on Discord
Tamanho do Arquivo 61.16 KB
Contagem de Instalações 725
Versão Atual 1.0
Última Atualização 2020-10-07
Data de Publicação 2020-10-07
Classificação 1.67/5 Total de 3 Avaliações
Desenvolvedor dr_ph4nt0m
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Discord Enhancer",
    "description": "This extension will allow you to hide server\/channel\/member list on Discord",
    "version": "1.0",
    "browser_action": {
        "default_title": "Discord Enhancer",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/discord.com\/*"
            ]
        }
    ]
}