Stadia Recorder

Record stadia stream and save it to file system

Wat is Stadia Recorder?

Stadia Recorder is een Chrome-extensie ontwikkeld door Krishna Bharadwaj, en de belangrijkste functie is "Record stadia stream and save it to file system".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Stadia Recorder

Download Stadia Recorder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Record Stadia game stream in high quality and save it to local file system. Uses MediaRecorder API.                    

Basisinformatie over de Extensie

Naam Stadia Recorder Stadia Recorder
ID lmijgghgkpigmigonmeddcmnkpfhmamg
Officiële URL https://chrome.google.com/webstore/detail/stadia-recorder/lmijgghgkpigmigonmeddcmnkpfhmamg
Beschrijving Record stadia stream and save it to file system
Bestandsgrootte 12.36 KB
Aantal Installaties 55
Huidige Versie 1.0
Laatst Bijgewerkt 2020-11-27
Publicatiedatum 2020-11-27
Beoordeling 4.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Krishna Bharadwaj
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/bharadwajpro/stadia-recorder
Help Pagina-URL https://github.com/bharadwajpro/stadia-recorder
URL van de Privacybeleid Pagina http://I collect no personal information
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stadia Recorder",
    "version": "1.0",
    "description": "Record stadia stream and save it to file system",
    "permissions": [
        "downloads",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "ico16.png",
        "48": "ico48.png",
        "128": "ico128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stadia.google.com\/*"
            ],
            "js": [
                "contentscriptutils.js",
                "contentscript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/stadia.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "rtcpeers.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Stadia Recorder",
        "default_popup": "popup.html"
    },
    "commands": {
        "start_stream": {
            "suggested_key": {
                "default": "Ctrl+Shift+5",
                "mac": "MacCtrl+Shift+5"
            },
            "description": "Start stream"
        },
        "pause_resume_stream": {
            "suggested_key": {
                "default": "Ctrl+Shift+6",
                "mac": "MacCtrl+Shift+6"
            },
            "description": "Pause\/Resume stream"
        },
        "stop_stream": {
            "suggested_key": {
                "default": "Ctrl+Shift+7",
                "mac": "MacCtrl+Shift+7"
            },
            "description": "Stop stream"
        }
    },
    "manifest_version": 2
}