Discord++
Adds numerous features to discord
Wat is Discord++?
Discord++ is een Chrome-extensie ontwikkeld door DevStoreMaker, en de belangrijkste functie is "Adds numerous features to discord".
Extensie Screenshots
Download het CRX-bestand van de extensie Discord++
Download Discord++-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | jcecehccgdjipjfchodbffgbgophlbec |
Officiële URL | https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec |
Beschrijving | Adds numerous features to discord |
Bestandsgrootte | 223 KB |
Aantal Installaties | 6,000 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2020-03-24 |
Publicatiedatum | 2020-03-24 |
Beoordeling | 1.54/5 Totaal 35 Beoordelingen |
Ontwikkelaar | DevStoreMaker |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |