RTC Recorder (Beta)
RTC Recorder
What is RTC Recorder (Beta)?
RTC Recorder (Beta) is a Chrome extension developed by https://fang-svr.just.edu.tw, and its main feature is "RTC Recorder".
Extension Screenshots
Download RTC Recorder (Beta) Extension CRX File
Download RTC Recorder (Beta) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | ibfgdcbgcjdpabkcbmkjijejfknbjfeg |
Official URL | https://chrome.google.com/webstore/detail/rtc-recorder-beta/ibfgdcbgcjdpabkcbmkjijejfknbjfeg |
Description | RTC Recorder |
File Size | 372 KB |
Installation Count | 1,000 |
Current Version | 0.9.918 |
Last Updated | 2020-12-19 |
Publish Date | 2019-09-29 |
Rating | 2.00/5 Total 4 Ratings |
Developer | https://fang-svr.just.edu.tw |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |