Hide Discord Panels
You can hide channel list and server list using this extension.
Что такое Hide Discord Panels?
Hide Discord Panels - это расширение Chrome, разработанное oytundd, и его основная функция - "You can hide channel list and server list using this extension.".
Снимки экрана расширения
Скачать файл CRX расширения Hide Discord Panels
Скачайте файлы расширений Hide Discord Panels в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Pin the extension and click on it to hide channel list and/or server list.Now you have more space for other applications!You can access the source code using the website link within the store page.
Feel free to support me at https://ko-fi.com/oytundd ! Основная информация о расширении
| Название | |
| ID | pbfhpkbikfennpgchbfjiokjngfcjgjb |
| Официальный URL | https://chromewebstore.google.com/detail/hide-discord-panels/pbfhpkbikfennpgchbfjiokjngfcjgjb |
| Описание | You can hide channel list and server list using this extension. |
| Размер файла | 11.3 KB |
| Количество установок | 23 |
| Текущая Версия | 1 |
| Последнее Обновление | 2021-06-05 |
| Дата публикации | 2021-05-08 |
| Разработчик | oytundd |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/oytundd/hide-discord-panels |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hide Discord Panels",
"version": "1",
"manifest_version": 2,
"description": "You can hide channel list and server list using this extension.",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_title": "Hide Panels"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"https:\/\/discord.com\/channels\/*"
]
} | |