Vencord Web
The cutest Discord mod now in your browser
Что такое Vencord Web?
Vencord Web - это расширение Chrome, разработанное Xinto, и его основная функция - "The cutest Discord mod now in your browser".
Снимки экрана расширения
Скачать файл CRX расширения Vencord Web
Скачайте файлы расширений Vencord Web в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Vencord is a modification for discord.com that adds plugins and custom styles, blocks Discord's tracking and more! For support or any questions, join our official support server: https://vencord.dev/discord Privacy Practices: Vencord respects your privacy. No info is collected about you, unless you enable the cloud sync integration. In that case, the following info is collected: - Authentication information: Discord OAuth token, used to identify you - Location: Your IP address, stored for anti-abuse purposes For more info, please see our privacy policy. (Vencord is not affiliated with Discord in any way)
Основная информация о расширении
Название | Vencord Web |
ID | cbghhgpcnddeihccjmnadmkaejncjndb |
Официальный URL | https://chromewebstore.google.com/detail/vencord-web/cbghhgpcnddeihccjmnadmkaejncjndb |
Описание | The cutest Discord mod now in your browser |
Размер файла | 1.67 MB |
Количество установок | 65,769 |
Текущая Версия | 1.7.0 |
Последнее Обновление | 2024-02-28 |
Дата публикации | 2023-01-26 |
Рейтинг | 4.55/5 Всего 131 оценок |
Разработчик | Xinto |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://vencord.dev |
URL страницы помощи | https://vencord.dev/discord |
URL страницы политики конфиденциальности | https://vencord.dev/cloud/privacy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "minimum_chrome_version": "91", "name": "Vencord Web", "description": "The cutest Discord mod now in your browser", "author": "Vendicated", "homepage_url": "https:\/\/github.com\/Vendicated\/Vencord", "icons": { "128": "icon.png" }, "host_permissions": [ "*:\/\/*.discord.com\/*", "https:\/\/raw.githubusercontent.com\/*" ], "permissions": [ "declarativeNetRequest" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.discord.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "dist\/*", "third-party\/*" ], "matches": [ "*:\/\/*.discord.com\/*" ] } ], "declarative_net_request": { "rule_resources": [ { "id": "modifyResponseHeaders", "enabled": true, "path": "modifyResponseHeaders.json" } ] }, "version": "1.7.0" } |