Discord Enhancer
This extension will allow you to hide server/channel/member list on Discord
Hvad er Discord Enhancer?
Discord Enhancer er en Chrome-udvidelse udviklet af dr_ph4nt0m, og dens hovedfunktion er "This extension will allow you to hide server/channel/member list on Discord".
Udvidelsesskærmbilleder
Download Discord Enhancer-udvidelses-CRX-fil
Download Discord Enhancer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | pcmklkffcneafillgbbpphkkofelpedo |
Officiel URL | https://chrome.google.com/webstore/detail/discord-enhancer/pcmklkffcneafillgbbpphkkofelpedo |
Beskrivelse | This extension will allow you to hide server/channel/member list on Discord |
Filstørrelse | 61.16 KB |
Antal Installationer | 725 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-10-07 |
Udgivelsesdato | 2020-10-07 |
Bedømmelse | 1.67/5 Samlet 3 Bedømmelser |
Udvikler | dr_ph4nt0m |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } ] } |