Phone.com Screen Sharing
The extension allows you to share your screen.
什么是Phone.com Screen Sharing?
Phone.com Screen Sharing是由https://video.phone.com开发的Chrome扩展程序,该扩展的主要功能是“The extension allows you to share your screen.”。
扩展截图
下载Phone.com Screen Sharing扩展crx文件
下载Phone.com Screen Sharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Installing the extension is required so you can share your screen.
扩展基本信息
名称 | Phone.com Screen Sharing |
ID | blhhkfbffffbgablmhdchnmgcdejggon |
官方URL | https://chromewebstore.google.com/detail/phonecom-screen-sharing/blhhkfbffffbgablmhdchnmgcdejggon |
简介 | The extension allows you to share your screen. |
文件大小 | 64.34 KB |
安装次数 | 295 |
当前版本 | 1.2 |
更新时间 | 2018-09-21 |
上架时间 | 2018-09-21 |
开发者 | https://video.phone.com |
付费类型 | free |
扩展官网 | https://video.phone.com/ |
支持的语言 | en |
manifest.json | |
{ "name": "Phone.com Screen Sharing", "author": "Phone.com Inc.", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.2", "manifest_version": 2, "minimum_chrome_version": "34", "description": "The extension allows you to share your screen.", "homepage_url": "https:\/\/meet.phone.com", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "matches": [ "https:\/\/*.phone.com\/*" ] } ], "icons": { "16": "phone-logo16.png", "48": "phone-logo48.png", "128": "phone-logo128.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |