DGG Chat Everywhere
Replaces Live Chats With DGG Chat.
Что такое DGG Chat Everywhere?
DGG Chat Everywhere - это расширение Chrome, разработанное Jazzy, и его основная функция - "Replaces Live Chats With DGG Chat.".
Снимки экрана расширения
Скачать файл CRX расширения DGG Chat Everywhere
Скачайте файлы расширений DGG Chat Everywhere в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Simply click the extension and use the toggle to switch between chats or use the popout button to open the Destiny.gg chat in a new window. Currently replaces: - YouTube chat - Twitch chat - Kick chat - Rumble chat View the source code, get help, and other updates here: https://github.com/DannyAlas/DGG-Everywhere This extension is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Основная информация о расширении
Название | DGG Chat Everywhere |
ID | ncbnabljhfmaedpkdgcoembdcpdbnkma |
Официальный URL | https://chromewebstore.google.com/detail/dgg-chat-everywhere/ncbnabljhfmaedpkdgcoembdcpdbnkma |
Описание | Replaces Live Chats With DGG Chat. |
Размер файла | 138 KB |
Количество установок | 2,279 |
Текущая Версия | 0.2.2 |
Последнее Обновление | 2023-07-04 |
Дата публикации | 2022-07-20 |
Рейтинг | 4.83/5 Всего 12 оценок |
Разработчик | Jazzy |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/DannyAlas/DGG-Everywhere |
URL страницы помощи | https://github.com/DannyAlas/DGG-Everywhere |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DGG Chat Everywhere", "description": "Replaces Live Chats With DGG Chat.", "version": "0.2.2", "manifest_version": 3, "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "src\/background.js" }, "options_page": "options.html", "content_scripts": [ { "id": "chat-injector", "matches": [ "*:\/\/*.destiny.gg\/*" ], "js": [ "src\/content.js" ], "runAt": "document_start" } ], "optional_host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.twitch.tv\/*", "*:\/\/*.kick.com\/*", "*:\/\/*.rumble.com\/*" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "scripting" ] } |