Discord++
Adds numerous features to discord
Was ist Discord++?
Discord++ ist eine Chrome-Erweiterung, die von DevStoreMaker entwickelt wurde, und ihr Hauptmerkmal ist "Adds numerous features to discord".
Erweiterungsscreenshots
Discord++-Erweiterungs-CRX-Datei herunterladen
Laden Sie Discord++-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | jcecehccgdjipjfchodbffgbgophlbec |
Offizielle URL | https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec |
Beschreibung | Adds numerous features to discord |
Dateigröße | 223 KB |
Installationsanzahl | 6,000 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-03-24 |
Veröffentlichungsdatum | 2020-03-24 |
Bewertung | 1.54/5 Insgesamt 35 Bewertungen |
Entwickler | DevStoreMaker |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |