Canvas Live Chat

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

Canvas Live Chat là gì?

Canvas Live Chat là một tiện ích mở rộng Chrome được phát triển bởi simpsonaustin756, và tính năng chính của nó là "Extension will place a chat window for the class below a stream on Canvas.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Canvas Live Chat

Tải xuống các tệp mở rộng Canvas Live Chat dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Canvas Live Chat Canvas Live Chat
ID ejpaglbjdljonlljljegofedlinjiigp
URL Chính Thức https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp
Mô tả Extension will place a chat window for the class below a stream on Canvas.
Kích Thước Tệp 82.93 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-02-01
Ngày Phát Hành 2018-02-01
Nhà Phát Triển simpsonaustin756
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}