Tutorcast

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

Что такое Tutorcast?

Tutorcast - это расширение Chrome, разработанное http://tutorcast.tv, и его основная функция - "This Chrome extension is developed primary for https://tutorcast.tv/. It doesn't do anything except capture content of your screen.".

Скачать файл CRX расширения Tutorcast

Скачайте файлы расширений Tutorcast в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Tutorcast Tutorcast
ID njncmjbcfcoipkceaicngchidlhijfja
Официальный URL https://chrome.google.com/webstore/detail/tutorcast/njncmjbcfcoipkceaicngchidlhijfja
Описание This Chrome extension is developed primary for https://tutorcast.tv/. It doesn't do anything except capture content of your screen.
Размер файла 14.53 KB
Количество установок 204
Текущая Версия 1.1.5
Последнее Обновление 2015-10-22
Дата публикации 2015-10-22
Рейтинг 5.00/5 Всего 2 оценок
Разработчик http://tutorcast.tv
Тип оплаты free
Официальный сайт расширения https://www.tutorcast.tv
Поддерживаемые языки 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"
    ]
}