Class Recorder

Common plugin to record and stream desktop over call

Class Recorder क्या है?

Class Recorder Tutorcomp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Common plugin to record and stream desktop over call"।

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

screenshot

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

crx प्रारूप में Class Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension captures  and streams the whiteboard and video of an online class ,which is saved in  a server as the recording of that class. Users need to install this to record the classes for viewing it later.                    

एक्सटेंशन की मूल जानकारी

नाम Class Recorder Class Recorder
ID laiffkppjhlpakgkomocfmiefgomgkhk
आधिकारिक URL https://chromewebstore.google.com/detail/class-recorder/laiffkppjhlpakgkomocfmiefgomgkhk
विवरण Common plugin to record and stream desktop over call
फ़ाइल का आकार 217 KB
स्थापना संख्या 69
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2022-12-21
प्रकाशन तिथि 2020-11-11
डेवलपर Tutorcomp
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://class.tutorcomp.com.kw
सहायता पृष्ठ URL https://tutorcomp.com.kw
गोपनीयता नीति पृष्ठ URL https://www.tutorcomp.com/terms-and-conditions
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Class Recorder",
    "short_name": "wbrecorder",
    "description": "Common plugin to record and stream desktop over call",
    "version": "1.0.3",
    "minimum_chrome_version": "34",
    "icons": {
        "16": "images\/logo16x16.png",
        "48": "images\/logo48x48.png",
        "128": "images\/logo128x128.png"
    },
    "browser_action": {
        "default_icon": "images\/logo16x16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "socket.io.js",
            "recorder.js",
            "MediaStreamRecorder.js"
        ],
        "matches": [
            "*:\/\/media.tutorcomp.com\/*",
            "*:\/\/media.tutorcomp.com.kw\/*",
            "*:\/\/tutorcomp.com\/*",
            "*:\/\/tutorcomp.com.kw\/*",
            "*:\/\/app.tutorcomp.com\/*",
            "*:\/\/app.tutorcomp.com.kw\/*",
            "*:\/\/class.tutorcomp.com\/*",
            "*:\/\/class.tutorcomp.com.kw\/*",
            "*:\/\/localhost\/*"
        ]
    },
    "permissions": [
        "desktopCapture",
        "tabs",
        "tabCapture"
    ],
    "web_accessible_resources": [
        "images\/logo16x16.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/media.tutorcomp.com\/*",
                "*:\/\/media.tutorcomp.com.kw\/*",
                "*:\/\/tutorcomp.com\/*",
                "*:\/\/tutorcomp.com.kw\/*",
                "*:\/\/app.tutorcomp.com\/*",
                "*:\/\/app.tutorcomp.com.kw\/*",
                "*:\/\/class.tutorcomp.com\/*",
                "*:\/\/class.tutorcomp.com.kw\/*",
                "*:\/\/localhost\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/media.tutorcomp.com\/*",
            "*:\/\/media.tutorcomp.com.kw\/*",
            "*:\/\/tutorcomp.com\/*",
            "*:\/\/tutorcomp.com.kw\/*",
            "*:\/\/app.tutorcomp.com\/*",
            "*:\/\/app.tutorcomp.com.kw\/*",
            "*:\/\/class.tutorcomp.com\/*",
            "*:\/\/class.tutorcomp.com.kw\/*",
            "*:\/\/localhost\/*"
        ]
    }
}