RTC Recorder (Beta)
RTC Recorder
Qu'est-ce que RTC Recorder (Beta) ?
RTC Recorder (Beta) est une extension Chrome développée par https://fang-svr.just.edu.tw, et sa fonction principale est "RTC Recorder".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension RTC Recorder (Beta)
Téléchargez les fichiers d'extension RTC Recorder (Beta) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | ibfgdcbgcjdpabkcbmkjijejfknbjfeg |
URL Officiel | https://chrome.google.com/webstore/detail/rtc-recorder-beta/ibfgdcbgcjdpabkcbmkjijejfknbjfeg |
Description | RTC Recorder |
Taille du Fichier | 372 KB |
Nombre d'Installations | 1,000 |
Version Actuelle | 0.9.918 |
Dernière Mise à Jour | 2020-12-19 |
Date de Publication | 2019-09-29 |
Évaluation | 2.00/5 Total 4 Évaluations |
Développeur | https://fang-svr.just.edu.tw |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |