Discord Enhancer
This extension will allow you to hide server/channel/member list on Discord
Co to jest Discord Enhancer?
Discord Enhancer to rozszerzenie Chrome opracowane przez dr_ph4nt0m, a jego główną funkcją jest „This extension will allow you to hide server/channel/member list on Discord”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Discord Enhancer
Pobierz pliki rozszerzeń Discord Enhancer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | pcmklkffcneafillgbbpphkkofelpedo |
Oficjalny URL | https://chrome.google.com/webstore/detail/discord-enhancer/pcmklkffcneafillgbbpphkkofelpedo |
Opis | This extension will allow you to hide server/channel/member list on Discord |
Rozmiar pliku | 61.16 KB |
Liczba instalacji | 725 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-10-07 |
Data Publikacji | 2020-10-07 |
Ocena | 1.67/5 Łącznie 3 Oceny |
Deweloper | dr_ph4nt0m |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/*" ] } ] } |