RTC Recorder (Beta)
RTC Recorder
RTC Recorder (Beta)란 무엇입니까?
RTC Recorder (Beta)은(는) https://fang-svr.just.edu.tw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "RTC Recorder"입니다.
확장 프로그램 스크린샷
RTC Recorder (Beta) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | |
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\/*" ] } ] } |