Discord Enhancer

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

Что такое Discord Enhancer?

Discord Enhancer - это расширение Chrome, разработанное dr_ph4nt0m, и его основная функция - "This extension will allow you to hide server/channel/member list on Discord".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Discord Enhancer

Скачайте файлы расширений Discord Enhancer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Discord Enhancer Discord Enhancer
ID pcmklkffcneafillgbbpphkkofelpedo
Официальный URL https://chrome.google.com/webstore/detail/discord-enhancer/pcmklkffcneafillgbbpphkkofelpedo
Описание This extension will allow you to hide server/channel/member list on Discord
Размер файла 61.16 KB
Количество установок 725
Текущая Версия 1.0
Последнее Обновление 2020-10-07
Дата публикации 2020-10-07
Рейтинг 1.67/5 Всего 3 оценок
Разработчик dr_ph4nt0m
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
            ]
        }
    ]
}