Screen Share

Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.

什么是Screen Share?

Screen Share是由authorGEN开发的Chrome扩展程序,该扩展的主要功能是“Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.”。

扩展截图

screenshot
screenshot
screenshot

下载Screen Share扩展crx文件

下载Screen Share扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Share the screen of your browser window using Screen Share when teaching, training or collaborating online via webRTC Virtual Classroom.  Add this extension to your Chrome browser just once and share the contents of your screen or a particular application with your audience seamlessly.                    

扩展基本信息

名称 Screen Share Screen Share
ID kihbmdbdahlekggklbfbgmnkifcmfcip
官方URL https://chrome.google.com/webstore/detail/screen-share/kihbmdbdahlekggklbfbgmnkifcmfcip
简介 Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.
文件大小 13.21 KB
安装次数 58,170
当前版本 0.0.0.8
更新时间 2017-11-07
上架时间 2017-11-07
评分 2.47/5 共43次评分
开发者 authorGEN
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL http://www.authorgen.com/Privacy.aspx
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Share",
    "author": "WizIQ",
    "version": "0.0.0.8",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}