Stadia Recorder
Record stadia stream and save it to file system
What is Stadia Recorder?
Stadia Recorder is a Chrome extension developed by Krishna Bharadwaj, and its main feature is "Record stadia stream and save it to file system".
Extension Screenshots
Download Stadia Recorder Extension CRX File
Download Stadia Recorder 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
Record Stadia game stream in high quality and save it to local file system. Uses MediaRecorder API.
Extension Basic Information
Name | |
ID | lmijgghgkpigmigonmeddcmnkpfhmamg |
Official URL | https://chrome.google.com/webstore/detail/stadia-recorder/lmijgghgkpigmigonmeddcmnkpfhmamg |
Description | Record stadia stream and save it to file system |
File Size | 12.36 KB |
Installation Count | 55 |
Current Version | 1.0 |
Last Updated | 2020-11-27 |
Publish Date | 2020-11-27 |
Rating | 4.50/5 Total 2 Ratings |
Developer | Krishna Bharadwaj |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bharadwajpro/stadia-recorder |
Help Page URL | https://github.com/bharadwajpro/stadia-recorder |
Privacy Policy Page URL | http://I collect no personal information |
Supported Languages | 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 } |