Screensharing for Nextcloud Video calls app

Screensharing utility for the Nextcloud Video calls app.

Was ist Screensharing for Nextcloud Video calls app?

Screensharing for Nextcloud Video calls app ist eine Chrome-Erweiterung, die von Nextcloud GmbH entwickelt wurde, und ihr Hauptmerkmal ist "Screensharing utility for the Nextcloud Video calls app.".

Erweiterungsscreenshots

screenshot

Screensharing for Nextcloud Video calls app-Erweiterungs-CRX-Datei herunterladen

Laden Sie Screensharing for Nextcloud Video calls app-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                                            

Grundlegende Informationen zur Erweiterung

Name Screensharing for Nextcloud Video calls app Screensharing for Nextcloud Video calls app
ID kepnpjhambipllfmgmbapncekcmabkol
Offizielle URL https://chromewebstore.google.com/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol
Beschreibung Screensharing utility for the Nextcloud Video calls app.
Dateigröße 38.19 KB
Installationsanzahl 9,340
Aktuelle Version 1.0.0
Letztes Update 2017-03-07
Veröffentlichungsdatum 2017-03-07
Bewertung 4.36/5 Insgesamt 14 Bewertungen
Entwickler Nextcloud GmbH
Zahlungsart free
Hilfeseite URL https://github.com/nextcloud/spreed-screensharing-chrome-extension
Unterstützte Sprachen 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
        }
    ]
}