Discord++
Adds numerous features to discord
Co to jest Discord++?
Discord++ to rozszerzenie Chrome opracowane przez DevStoreMaker, a jego główną funkcją jest „Adds numerous features to discord”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Discord++
Pobierz pliki rozszerzeń Discord++ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jcecehccgdjipjfchodbffgbgophlbec |
Oficjalny URL | https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec |
Opis | Adds numerous features to discord |
Rozmiar pliku | 223 KB |
Liczba instalacji | 6,000 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-03-24 |
Data Publikacji | 2020-03-24 |
Ocena | 1.54/5 Łącznie 35 Oceny |
Deweloper | DevStoreMaker |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |