Class Recorder

Common plugin to record and stream desktop over call

Class Recorderคืออะไร?

Class Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tutorcomp และคุณลักษณะหลักของมันคือ "Common plugin to record and stream desktop over call"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Class Recorder

ดาวน์โหลดไฟล์ส่วนขยาย Class Recorder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
        ]
    }
}