Discord++
Adds numerous features to discord
Что такое Discord++?
Discord++ - это расширение Chrome, разработанное DevStoreMaker, и его основная функция - "Adds numerous features to discord".
Снимки экрана расширения
Скачать файл CRX расширения Discord++
Скачайте файлы расширений Discord++ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | jcecehccgdjipjfchodbffgbgophlbec |
Официальный URL | https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec |
Описание | Adds numerous features to discord |
Размер файла | 223 KB |
Количество установок | 6,000 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-03-24 |
Дата публикации | 2020-03-24 |
Рейтинг | 1.54/5 Всего 35 оценок |
Разработчик | DevStoreMaker |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |