Tutorcast

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

Vad är Tutorcast?

Tutorcast är en Chrome-tillägg utvecklad av http://tutorcast.tv, och dess huvudfunktion är "This Chrome extension is developed primary for https://tutorcast.tv/. It doesn't do anything except capture content of your screen.".

Ladda ner Tutorcast-förlängningens CRX-fil

Ladda ner Tutorcast-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Tutorcast Tutorcast
ID njncmjbcfcoipkceaicngchidlhijfja
Officiell webbadress https://chrome.google.com/webstore/detail/tutorcast/njncmjbcfcoipkceaicngchidlhijfja
Beskrivning This Chrome extension is developed primary for https://tutorcast.tv/. It doesn't do anything except capture content of your screen.
Filstorlek 14.53 KB
Antal Installationer 204
Aktuell Version 1.1.5
Senast Uppdaterad 2015-10-22
Publiceringsdatum 2015-10-22
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare http://tutorcast.tv
Betalningssätt free
Tilläggswebbplats https://www.tutorcast.tv
Stödda Språk 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"
    ]
}