Discord++
Adds numerous features to discord
Vad är Discord++?
Discord++ är en Chrome-tillägg utvecklad av DevStoreMaker, och dess huvudfunktion är "Adds numerous features to discord".
Tilläggsskärmbilder
Ladda ner Discord++-förlängningens CRX-fil
Ladda ner Discord++-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | jcecehccgdjipjfchodbffgbgophlbec |
Officiell webbadress | https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec |
Beskrivning | Adds numerous features to discord |
Filstorlek | 223 KB |
Antal Installationer | 6,000 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2020-03-24 |
Publiceringsdatum | 2020-03-24 |
Betyg | 1.54/5 Totalt 35 Betyg |
Utvecklare | DevStoreMaker |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |