Tutorcast

This Chrome extension is developed primary for https://tutorcast.tv/. It doesn't do anything except capture content of your screen.

Was ist Tutorcast?

Tutorcast ist eine Chrome-Erweiterung, die von http://tutorcast.tv entwickelt wurde, und ihr Hauptmerkmal ist "This Chrome extension is developed primary for https://tutorcast.tv/. It doesn't do anything except capture content of your screen.".

Tutorcast-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tutorcast-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

                        Tutorcast screen sharing allows tutors to share their screens with students.                    

Grundlegende Informationen zur Erweiterung

Name Tutorcast Tutorcast
ID njncmjbcfcoipkceaicngchidlhijfja
Offizielle URL https://chrome.google.com/webstore/detail/tutorcast/njncmjbcfcoipkceaicngchidlhijfja
Beschreibung This Chrome extension is developed primary for https://tutorcast.tv/. It doesn't do anything except capture content of your screen.
Dateigröße 14.53 KB
Installationsanzahl 204
Aktuelle Version 1.1.5
Letztes Update 2015-10-22
Veröffentlichungsdatum 2015-10-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler http://tutorcast.tv
Zahlungsart free
Erweiterungswebsite https://www.tutorcast.tv
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tutorcast",
    "author": "Tutorcast, Inc.",
    "version": "1.1.5",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This Chrome extension is developed primary for https:\/\/tutorcast.tv\/. It doesn't do anything except capture content of your screen.",
    "homepage_url": "https:\/\/tutorcast.tv\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "*:\/\/localhost\/*",
                "*:\/\/www.tutorcast.tv\/*",
                "*:\/\/tutorcast.tv\/*",
                "*:\/\/50.18.199.99\/*",
                "*:\/\/54.215.235.120\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}