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" ] } |