Thinkful

Access Thinkful courses easily and enable screensharing support in mentor sessions.

Что такое Thinkful?

Thinkful - это расширение Chrome, разработанное eng.thinkful, и его основная функция - "Access Thinkful courses easily and enable screensharing support in mentor sessions.".

Снимки экрана расширения

screenshot

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

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

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

                        Access the Thinkful platform with one click from our chrome extension.                    

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

Название Thinkful Thinkful
ID hdifhbpniaokcjogffalpnbphplppdcb
Официальный URL https://chromewebstore.google.com/detail/thinkful/hdifhbpniaokcjogffalpnbphplppdcb
Описание Access Thinkful courses easily and enable screensharing support in mentor sessions.
Размер файла 9.73 KB
Количество установок 2,330
Текущая Версия 1.8
Последнее Обновление 2021-08-26
Дата публикации 2021-08-26
Рейтинг 1.00/5 Всего 1 оценок
Разработчик eng.thinkful
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.thinkful.com
URL страницы помощи https://www.thinkful.com/faq/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Thinkful",
    "author": "Thinkful, Inc.",
    "homepage_url": "http:\/\/www.thinkful.com\/",
    "version": "1.8",
    "minimum_chrome_version": "34",
    "description": "Access Thinkful courses easily and enable screensharing support in mentor sessions.",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "permissions": [
        "desktopCapture",
        "cookies",
        "*:\/\/*.thinkful.com\/*"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.thinkful.com\/*",
            "*:\/\/t.ful\/*"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "*:\/\/*.thinkful.com\/*",
                "*:\/\/t.ful\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background\/global.js",
            "js\/background\/app.js",
            "js\/background\/screensharing.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Thinkful"
    }
}