RecordRTC

Record screen activity, camera, mic, tab, speakers in 4K HD video format (using RecordRTC)

Qu'est-ce que RecordRTC ?

RecordRTC est une extension Chrome développée par https://www.webrtc-experiment.com, et sa fonction principale est "Record screen activity, camera, mic, tab, speakers in 4K HD video format (using RecordRTC)".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension RecordRTC

Téléchargez les fichiers d'extension RecordRTC 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

                        * Record Cam, Mic, Screen, Speakers, Tab, etc.
* Manage recordings (everything is saved locally inside the browser)
* Upload to YouTube (if you want to make it public)

Contact via: https://github.com/muaz-khan/Chrome-Extensions/issues

----

Source: https://github.com/muaz-khan/Chrome-Extensions/tree/master/screen-recording                    

Informations de Base sur l'Extension

Nom RecordRTC RecordRTC
ID ndcljioonkecdnaaihodjgiliohngojp
URL Officiel https://chromewebstore.google.com/detail/recordrtc/ndcljioonkecdnaaihodjgiliohngojp
Description Record screen activity, camera, mic, tab, speakers in 4K HD video format (using RecordRTC)
Taille du Fichier 149 KB
Nombre d'Installations 20,506
Version Actuelle 9.1
Dernière Mise à Jour 2022-04-05
Date de Publication 2020-05-24
Évaluation 3.82/5 Total 66 Évaluations
Développeur https://www.webrtc-experiment.com
Email [email protected]
Type de Paiement in_app
Site Web de l'Extension https://github.com/muaz-khan/Chrome-Extensions/tree/master/screen-recording
URL de la Page d'Aide https://github.com/muaz-khan/Chrome-Extensions/issues
URL de la Page de Politique de Confidentialité https://github.com/muaz-khan/Chrome-Extensions/blob/master/desktopCapture-p2p/Privacy.md
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RecordRTC",
    "short_name": "RecordRTC",
    "author": "Muaz Khan",
    "version": "9.1",
    "manifest_version": 2,
    "minimum_chrome_version": "49",
    "description": "Record screen activity, camera, mic, tab, speakers in 4K HD video format (using RecordRTC)",
    "homepage_url": "https:\/\/github.com\/muaz-khan\/Chrome-Extensions\/tree\/master\/screen-recording",
    "background": {
        "scripts": [
            "background\/background.common.js",
            "background\/background.js",
            "background\/background.desktopCapture.js",
            "background\/background.tabCapture.js",
            "background\/background.badgeText.js",
            "background\/background.getUserMedia.js",
            "background\/background.messaging.js",
            "background\/background.players.js",
            "RecordRTC\/MediaStreamRecorder.js",
            "RecordRTC\/MultiStreamRecorder.js",
            "RecordRTC\/MultiStreamsMixer.js",
            "RecordRTC\/StereoAudioRecorder.js",
            "RecordRTC\/DiskStorage.js",
            "RecordRTC\/EBML.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background\/background.contentScript.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "images\/main-icon.png",
        "default_title": "Record Your Screen, Tab or Camera",
        "default_popup": "dropdown.html"
    },
    "icons": {
        "16": "images\/main-icon.png",
        "22": "images\/main-icon.png",
        "32": "images\/main-icon.png",
        "48": "images\/main-icon.png",
        "128": "images\/main-icon.png"
    },
    "permissions": [
        "desktopCapture",
        "storage",
        "tabs",
        "tabCapture",
        "activeTab",
        "",
        "identity",
        "https:\/\/www.googleapis.com\/*"
    ],
    "oauth2": {
        "client_id": "41556190767-99gorp1l5qij3hlsos4jms4vosbilrsa.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/youtube.upload",
            "https:\/\/www.googleapis.com\/auth\/youtube"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "web_accessible_resources": [
        "images\/main-icon.png"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    }
}