Canvas Live Chat

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

Canvas Live Chat란 무엇입니까?

Canvas Live Chat은(는) simpsonaustin756에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension will place a chat window for the class below a stream on Canvas."입니다.

확장 프로그램 스크린샷

screenshot

Canvas Live Chat 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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