Stadia Recorder
Record stadia stream and save it to file system
Cos'è Stadia Recorder?
Stadia Recorder è un'estensione di Chrome sviluppata da Krishna Bharadwaj, e la sua funzione principale è "Record stadia stream and save it to file system".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Stadia Recorder
Scarica i file di estensione Stadia Recorder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Record Stadia game stream in high quality and save it to local file system. Uses MediaRecorder API.
Informazioni di Base sull'Estensione
Nome | |
ID | lmijgghgkpigmigonmeddcmnkpfhmamg |
URL Ufficiale | https://chrome.google.com/webstore/detail/stadia-recorder/lmijgghgkpigmigonmeddcmnkpfhmamg |
Descrizione | Record stadia stream and save it to file system |
Dimensione del File | 12.36 KB |
Conteggio Installazioni | 55 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-11-27 |
Data di Pubblicazione | 2020-11-27 |
Valutazione | 4.50/5 Totale 2 Valutazioni |
Sviluppatore | Krishna Bharadwaj |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/bharadwajpro/stadia-recorder |
URL della Pagina di Aiuto | https://github.com/bharadwajpro/stadia-recorder |
URL della Pagina della Politica sulla Privacy | http://I collect no personal information |
Lingue Supportate | 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 } |