Canvas Live Chat

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

Cos'è Canvas Live Chat?

Canvas Live Chat è un'estensione di Chrome sviluppata da simpsonaustin756, e la sua funzione principale è "Extension will place a chat window for the class below a stream on Canvas.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Canvas Live Chat

Scarica i file di estensione Canvas Live Chat in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Canvas Live Chat Canvas Live Chat
ID ejpaglbjdljonlljljegofedlinjiigp
URL Ufficiale https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp
Descrizione Extension will place a chat window for the class below a stream on Canvas.
Dimensione del File 82.93 KB
Conteggio Installazioni 24
Versione Corrente 1.0
Ultimo Aggiornamento 2018-02-01
Data di Pubblicazione 2018-02-01
Sviluppatore simpsonaustin756
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}