Discord Enhancer

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

Cos'è Discord Enhancer?

Discord Enhancer è un'estensione di Chrome sviluppata da dr_ph4nt0m, e la sua funzione principale è "This extension will allow you to hide server/channel/member list on Discord".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Discord Enhancer

Scarica i file di estensione Discord Enhancer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Discord Enhancer Discord Enhancer
ID pcmklkffcneafillgbbpphkkofelpedo
URL Ufficiale https://chrome.google.com/webstore/detail/discord-enhancer/pcmklkffcneafillgbbpphkkofelpedo
Descrizione This extension will allow you to hide server/channel/member list on Discord
Dimensione del File 61.16 KB
Conteggio Installazioni 725
Versione Corrente 1.0
Ultimo Aggiornamento 2020-10-07
Data di Pubblicazione 2020-10-07
Valutazione 1.67/5 Totale 3 Valutazioni
Sviluppatore dr_ph4nt0m
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
            ]
        }
    ]
}