DGG Chat Everywhere
Replaces Live Chats With DGG Chat.
DGG Chat Everywhereとは何ですか?
DGG Chat EverywhereはJazzyによって開発されたChromeの拡張機能で、その主な機能は「Replaces Live Chats With DGG Chat.」です。
拡張機能のスクリーンショット
DGG Chat Everywhere拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" ] } |