Codassium Screensharing

Enables screensharing for Codassium

Was ist Codassium Screensharing?

Codassium Screensharing ist eine Chrome-Erweiterung, die von https://codassium.com entwickelt wurde, und ihr Hauptmerkmal ist "Enables screensharing for Codassium".

Erweiterungsscreenshots

screenshot

Codassium Screensharing-Erweiterungs-CRX-Datei herunterladen

Laden Sie Codassium Screensharing-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

                        This extension adds screensharing functionality to Codassium. See: https://codassium.com                    

Grundlegende Informationen zur Erweiterung

Name Codassium Screensharing Codassium Screensharing
ID aehpbllmmckgkcpdipcpffccjlmiiaog
Offizielle URL https://chrome.google.com/webstore/detail/codassium-screensharing/aehpbllmmckgkcpdipcpffccjlmiiaog
Beschreibung Enables screensharing for Codassium
Dateigröße 5.74 KB
Installationsanzahl 13
Aktuelle Version 0.1.1
Letztes Update 2014-12-06
Veröffentlichungsdatum 2014-12-06
Entwickler https://codassium.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://codassium.com
Hilfeseite URL https://codassium.com/contact
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codassium Screensharing",
    "description": "Enables screensharing for Codassium",
    "version": "0.1.1",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "icons": {
        "48": "codassium_48.png",
        "128": "codassium_128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/codassium.devlocal\/*",
                "https:\/\/codassium.com\/*"
            ]
        }
    ]
}