Doxy.me Screen Sharing
Extension that captures content of your screen.
什么是Doxy.me Screen Sharing?
Doxy.me Screen Sharing是由https://doxy.me开发的Chrome扩展程序,该扩展的主要功能是“Extension that captures content of your screen.”。
扩展截图
下载Doxy.me Screen Sharing扩展crx文件
下载Doxy.me Screen Sharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A Google Chrome extension that allows a Doxy.me user to share their screen with another person in a Doxy.me meeting. 扩展基本信息
| 名称 | |
| ID | hpohjmcciikpccgjfbjopmjcieefnaem |
| 官方URL | https://chromewebstore.google.com/detail/doxyme-screen-sharing/hpohjmcciikpccgjfbjopmjcieefnaem |
| 简介 | Extension that captures content of your screen. |
| 文件大小 | 17.64 KB |
| 安装次数 | 5,966 |
| 当前版本 | 1.0 |
| 更新时间 | 2017-10-23 |
| 上架时间 | 2017-10-23 |
| 评分 | 2.67/5 共3次评分 |
| 开发者 | https://doxy.me |
| 付费类型 | free |
| 扩展官网 | https://doxy.me |
| 帮助页面URL | https://help.doxy.me/video-tutorials/features/screenshare |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Doxy.me Screen Sharing",
"author": "Doxy.me LLC",
"version": "1.0",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Extension that captures content of your screen.",
"homepage_url": "https:\/\/doxy.me",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"matches": [
"https:\/\/*.doxy.me\/*",
"https:\/\/doxy.me\/*",
"https:\/\/doxi.me\/*",
"https:\/\/*.doxi.me\/*"
]
}
],
"icons": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
} | |