Switchvox Screen Sharing for Switchboard
Enables screen-sharing for chrome in the switchboard
什么是Switchvox Screen Sharing for Switchboard?
Switchvox Screen Sharing for Switchboard是由Digium, Inc.开发的Chrome扩展程序,该扩展的主要功能是“Enables screen-sharing for chrome in the switchboard”。
扩展截图
下载Switchvox Screen Sharing for Switchboard扩展crx文件
下载Switchvox Screen Sharing for Switchboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is for Switchvox users, and makes it possible to share your desktop computer screen in the Switchboard.
扩展基本信息
名称 | Switchvox Screen Sharing for Switchboard |
ID | odnmjffmhmkbebhofkmeeejdbcofiejc |
官方URL | https://chromewebstore.google.com/detail/switchvox-screen-sharing/odnmjffmhmkbebhofkmeeejdbcofiejc |
简介 | Enables screen-sharing for chrome in the switchboard |
文件大小 | 4.03 KB |
安装次数 | 884 |
当前版本 | 0.0.2 |
更新时间 | 2018-10-24 |
上架时间 | 2018-10-24 |
评分 | 1.00/5 共1次评分 |
开发者 | Digium, Inc. |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Switchvox Screen Sharing for Switchboard", "description": "Enables screen-sharing for chrome in the switchboard", "version": "0.0.2", "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "desktopCapture", "https:\/\/*\/*", "http:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |