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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |