RTC Recorder (Beta)

RTC Recorder

什么是RTC Recorder (Beta)?

RTC Recorder (Beta)是由https://fang-svr.just.edu.tw开发的Chrome扩展程序,该扩展的主要功能是“RTC Recorder”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载RTC Recorder (Beta)扩展crx文件

下载RTC Recorder (Beta)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Screen Recorder
Features:
1.record screen with system and microphone audio sources,
2.a simple screen drawing,
3.store the recorded video on cloud or local.

Hot keys:
Ctrl+Shift+0 -> start/stop recording
Ctrl+Shift+1 -> pause/resume recording
Ctrl+Shift+2 -> screen drawing                    

扩展基本信息

名称 RTC Recorder (Beta) RTC Recorder (Beta)
ID ibfgdcbgcjdpabkcbmkjijejfknbjfeg
官方URL https://chrome.google.com/webstore/detail/rtc-recorder-beta/ibfgdcbgcjdpabkcbmkjijejfknbjfeg
简介 RTC Recorder
文件大小 372 KB
安装次数 1,000
当前版本 0.9.918
更新时间 2020-12-19
上架时间 2019-09-29
评分 2.00/5 共4次评分
开发者 https://fang-svr.just.edu.tw
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RTC Recorder (Beta)",
    "description": "RTC Recorder",
    "version": "0.9.918",
    "manifest_version": 2,
    "minimum_chrome_version": "65",
    "icons": {
        "32": "images\/logo32.png"
    },
    "browser_action": {
        "default_icon": "images\/vrec_normal.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "background",
        "clipboardRead",
        "downloads",
        "desktopCapture",
        "tabs",
        "storage",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "*:\/\/*\/*"
    ],
    "commands": {
        "toggleRecording": {
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            },
            "description": "Toggle Recording",
            "global": true
        },
        "togglePause": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Toggle Pause",
            "global": true
        },
        "screenDrawing": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Screen Drawing",
            "global": true
        },
        "screenShot": {
            "suggested_key": {
                "default": "Ctrl+Shift+3"
            },
            "description": "Screen Shot for whiteboard",
            "global": true
        }
    },
    "background": {
        "scripts": [
            "thirdParty\/DetectRTC.min.js",
            "thirdParty\/jquery.min.js",
            "thirdParty\/jquery.xmpp.js",
            "thirdParty\/binary.min.js",
            "libs\/adapter.min.js",
            "libs\/util.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.just.edu.tw\/*",
                "https:\/\/*.hinet-ip.hinet.net\/wm2\/*"
            ]
        }
    ]
}