Discord++
Adds numerous features to discord
What is Discord++?
Discord++ is a Chrome extension developed by DevStoreMaker, and its main feature is "Adds numerous features to discord".
Extension Screenshots
Download Discord++ Extension CRX File
Download Discord++ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | jcecehccgdjipjfchodbffgbgophlbec |
Official URL | https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec |
Description | Adds numerous features to discord |
File Size | 223 KB |
Installation Count | 6,000 |
Current Version | 1.0 |
Last Updated | 2020-03-24 |
Publish Date | 2020-03-24 |
Rating | 1.54/5 Total 35 Ratings |
Developer | DevStoreMaker |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |