Canvas Live Chat

Extension will place a chat window for the class below a stream on Canvas.

Co to jest Canvas Live Chat?

Canvas Live Chat to rozszerzenie Chrome opracowane przez simpsonaustin756, a jego główną funkcją jest „Extension will place a chat window for the class below a stream on Canvas.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Canvas Live Chat

Pobierz pliki rozszerzeń Canvas Live Chat w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Canvas Live Chat Canvas Live Chat
ID ejpaglbjdljonlljljegofedlinjiigp
Oficjalny URL https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp
Opis Extension will place a chat window for the class below a stream on Canvas.
Rozmiar pliku 82.93 KB
Liczba instalacji 24
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-02-01
Data Publikacji 2018-02-01
Deweloper simpsonaustin756
Typ Płatności free
Obsługiwane Języki 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"
    ]
}