RTC Recorder (Beta)

RTC Recorder

O que é RTC Recorder (Beta)?

RTC Recorder (Beta) é uma extensão do Chrome desenvolvida por https://fang-svr.just.edu.tw, e sua principal característica é "RTC Recorder".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão RTC Recorder (Beta)

Baixe arquivos de extensão RTC Recorder (Beta) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome RTC Recorder (Beta) RTC Recorder (Beta)
ID ibfgdcbgcjdpabkcbmkjijejfknbjfeg
URL Oficial https://chrome.google.com/webstore/detail/rtc-recorder-beta/ibfgdcbgcjdpabkcbmkjijejfknbjfeg
Descrição RTC Recorder
Tamanho do Arquivo 372 KB
Contagem de Instalações 1,000
Versão Atual 0.9.918
Última Atualização 2020-12-19
Data de Publicação 2019-09-29
Classificação 2.00/5 Total de 4 Avaliações
Desenvolvedor https://fang-svr.just.edu.tw
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
            ]
        }
    ]
}