Canvas Live Chat

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

Qu'est-ce que Canvas Live Chat ?

Canvas Live Chat est une extension Chrome développée par simpsonaustin756, et sa fonction principale est "Extension will place a chat window for the class below a stream on Canvas.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Canvas Live Chat

Téléchargez les fichiers d'extension Canvas Live Chat au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Canvas Live Chat Canvas Live Chat
ID ejpaglbjdljonlljljegofedlinjiigp
URL Officiel https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp
Description Extension will place a chat window for the class below a stream on Canvas.
Taille du Fichier 82.93 KB
Nombre d'Installations 24
Version Actuelle 1.0
Dernière Mise à Jour 2018-02-01
Date de Publication 2018-02-01
Développeur simpsonaustin756
Type de Paiement free
Langues Prises en Charge 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"
    ]
}