Screensharing for Nextcloud Video calls app

Screensharing utility for the Nextcloud Video calls app.

什么是Screensharing for Nextcloud Video calls app?

Screensharing for Nextcloud Video calls app是由Nextcloud GmbH开发的Chrome扩展程序,该扩展的主要功能是“Screensharing utility for the Nextcloud Video calls app.”。

扩展截图

screenshot

下载Screensharing for Nextcloud Video calls app扩展crx文件

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

扩展使用说明

                                            

扩展基本信息

名称 Screensharing for Nextcloud Video calls app Screensharing for Nextcloud Video calls app
ID kepnpjhambipllfmgmbapncekcmabkol
官方URL https://chromewebstore.google.com/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol
简介 Screensharing utility for the Nextcloud Video calls app.
文件大小 38.19 KB
安装次数 9,340
当前版本 1.0.0
更新时间 2017-03-07
上架时间 2017-03-07
评分 4.36/5 共14次评分
开发者 Nextcloud GmbH
付费类型 free
帮助页面URL https://github.com/nextcloud/spreed-screensharing-chrome-extension
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screensharing for Nextcloud Video calls app",
    "description": "Screensharing utility for the Nextcloud Video calls app.",
    "author": "Joachim Bauch ",
    "homepage_url": "https:\/\/nextcloud.com",
    "version": "1.0.0",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "desktopCapture",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "detector.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}