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.
扩展基本信息
名称 | 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" ] } |