ClassChat

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

ClassChat क्या है?

ClassChat Spencer Wilson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds instant message-like functionality to Piazza and Blackboard class pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ClassChat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
    }
}