Discord Video Chat
Place Discord Video Channel and Text Channel side-by-side.
Discord Video Chatとは何ですか?
Discord Video Chatはdsngiemによって開発されたChromeの拡張機能で、その主な機能は「Place Discord Video Channel and Text Channel side-by-side.」です。
拡張機能のスクリーンショット
Discord Video Chat拡張機能のCRXファイルをダウンロード
Discord Video Chat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Required for using the Discord Video Chat website. 拡張機能の基本情報
| 名前 | |
| ID | jjpggljlbclphcoblhpngnbbmgjgaoja |
| 公式URL | https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja |
| 説明 | Place Discord Video Channel and Text Channel side-by-side. |
| ファイルサイズ | 91.08 KB |
| インストール数 | 465 |
| 現在のバージョン | 1.0.4 |
| 最終更新日 | 2022-01-11 |
| 公開日 | 2020-12-21 |
| 評価 | 4.00/5 合計 2 レビュー |
| 開発者 | dsngiem |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Discord Video Chat",
"short_name": "Discord Video Chat",
"version": "1.0.4",
"description": "Place Discord Video Channel and Text Channel side-by-side.",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"browser_action": {
"default_icon": "icon-48.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/localhost:4200\/*",
"https:\/\/beehive-chat.web.app\/*"
],
"js": [
"app.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/discord.com\/*"
],
"js": [
"scripts\/discord.js"
],
"css": [
"scripts\/discord.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"manifest_version": 2,
"permissions": [
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"http:\/\/localhost:4200\/*",
"https:\/\/discord.com\/*",
"https:\/\/beehive-chat.web.app\/*"
],
"optional_permissions": [
"contentSettings"
]
} | |