Discord Video Chat
Place Discord Video Channel and Text Channel side-by-side.
Discord Video Chatคืออะไร?
Discord Video Chat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dsngiem และคุณลักษณะหลักของมันคือ "Place Discord Video Channel and Text Channel side-by-side."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Discord Video Chat
ดาวน์โหลดไฟล์ส่วนขยาย Discord Video Chat ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Required for using the Discord Video Chat website.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Discord Video Chat |
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 |
อีเมล | [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" ] } |