ClassChat

Adds instant message-like functionality to Piazza and Blackboard class pages.

ClassChat란 무엇입니까?

ClassChat은(는) Spencer Wilson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds instant message-like functionality to Piazza and Blackboard class pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ClassChat 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chat real-time with your classmates, right inside your Piazza and Blackboard course pages. Every class page has a corresponding chat room in which anyone can chat, or if you wish you can start a private conversation with another user.

You may change your nick either by typing "/nick " or by clicking your current one, directly to the left of the text input box.

This extension was developed on a Chromebook at UC San Diego. Source coming soon to GitHub. If you'd like to see more types of course websites supported, drop me a line at [email protected].                    

확장 프로그램 기본 정보

이름 ClassChat ClassChat
ID kipffakipdeoibhppkobjmohdpglnmfh
공식 URL https://chromewebstore.google.com/detail/classchat/kipffakipdeoibhppkobjmohdpglnmfh
설명 Adds instant message-like functionality to Piazza and Blackboard class pages.
파일 크기 51.41 KB
설치 횟수 45
현재 버전 1.0.1.5
최근 업데이트 2015-04-06
출시 날짜 2015-04-05
평점 4.00/5 총 1 개의 평점
개발자 Spencer Wilson
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ClassChat",
    "version": "1.0.1.5",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Adds instant message-like functionality to Piazza and Blackboard class pages.",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/piazza.com\/class\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "common.js",
                "piazza.js"
            ],
            "css": [
                "piazza.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/ted.ucsd.edu\/*Course%26id*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "common.js",
                "blackboard.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/kiwiirc.com\/client\/irc.freenode.net\/"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "cleankiwi.js"
            ],
            "css": [
                "cleankiwi.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}