Discord++
Adds numerous features to discord
Hvad er Discord++?
Discord++ er en Chrome-udvidelse udviklet af DevStoreMaker, og dens hovedfunktion er "Adds numerous features to discord".
Udvidelsesskærmbilleder
Download Discord++-udvidelses-CRX-fil
Download Discord++-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
This chrome extension adds some extra menu options within the discord webapp. These features include: A "Darker Theme" for discord, an expletive filter that can be turned on and off, and a couple of smaller easter-eggs. Note: Due to privacy concerns, most names and icons are removed in the demo images
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | jcecehccgdjipjfchodbffgbgophlbec |
Officiel URL | https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec |
Beskrivelse | Adds numerous features to discord |
Filstørrelse | 223 KB |
Antal Installationer | 6,000 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-03-24 |
Udgivelsesdato | 2020-03-24 |
Bedømmelse | 1.54/5 Samlet 35 Bedømmelser |
Udvikler | DevStoreMaker |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Discord++", "version": "1.0", "description": "Adds numerous features to discord", "manifest_version": 2, "permissions": [ "https:\/\/discordapp.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/discordapp.com\/*" ], "js": [ "background.js" ] } ], "web_accessible_resources": [ "darker.css", "badwords.txt" ], "icons": { "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "128": "logo128.png" } } |