Discord Enhancer

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

Was ist Discord Enhancer?

Discord Enhancer ist eine Chrome-Erweiterung, die von dr_ph4nt0m entwickelt wurde, und ihr Hauptmerkmal ist "This extension will allow you to hide server/channel/member list on Discord".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Discord Enhancer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Discord Enhancer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Discord Enhancer Discord Enhancer
ID pcmklkffcneafillgbbpphkkofelpedo
Offizielle URL https://chrome.google.com/webstore/detail/discord-enhancer/pcmklkffcneafillgbbpphkkofelpedo
Beschreibung This extension will allow you to hide server/channel/member list on Discord
Dateigröße 61.16 KB
Installationsanzahl 725
Aktuelle Version 1.0
Letztes Update 2020-10-07
Veröffentlichungsdatum 2020-10-07
Bewertung 1.67/5 Insgesamt 3 Bewertungen
Entwickler dr_ph4nt0m
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}