Canvas Live Chat
Extension will place a chat window for the class below a stream on Canvas.
Что такое Canvas Live Chat?
Canvas Live Chat - это расширение Chrome, разработанное simpsonaustin756, и его основная функция - "Extension will place a chat window for the class below a stream on Canvas.".
Снимки экрана расширения
Скачать файл CRX расширения Canvas Live Chat
Скачайте файлы расширений Canvas Live Chat в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extends the functionality of any canvas video stream by adding the dedicated class chat to the same page as the stream itself. This makes it easier to follow the content of the actual stream, stay involved in the chat, and reduce the potential for missing pings.
Основная информация о расширении
Название | Canvas Live Chat |
ID | ejpaglbjdljonlljljegofedlinjiigp |
Официальный URL | https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp |
Описание | Extension will place a chat window for the class below a stream on Canvas. |
Размер файла | 82.93 KB |
Количество установок | 24 |
Текущая Версия | 1.0 |
Последнее Обновление | 2018-02-01 |
Дата публикации | 2018-02-01 |
Разработчик | simpsonaustin756 |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Canvas Live Chat", "short_name": "Live Chat", "description": "Extension will place a chat window for the class below a stream on Canvas.", "version": "1.0", "author": "Austin Simpson", "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/*" ], "js": [ "jquery-3.2.1.min.js", "livechat.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "settings.html" }, "permissions": [ "activeTab", "storage" ] } |