Stadia Recorder
Record stadia stream and save it to file system
Stadia Recorderとは何ですか?
Stadia RecorderはKrishna Bharadwajによって開発されたChromeの拡張機能で、その主な機能は「Record stadia stream and save it to file system」です。
拡張機能のスクリーンショット
Stadia Recorder拡張機能のCRXファイルをダウンロード
Stadia Recorder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Record Stadia game stream in high quality and save it to local file system. Uses MediaRecorder API.
拡張機能の基本情報
名前 | |
ID | lmijgghgkpigmigonmeddcmnkpfhmamg |
公式URL | https://chrome.google.com/webstore/detail/stadia-recorder/lmijgghgkpigmigonmeddcmnkpfhmamg |
説明 | Record stadia stream and save it to file system |
ファイルサイズ | 12.36 KB |
インストール数 | 55 |
現在のバージョン | 1.0 |
最終更新日 | 2020-11-27 |
公開日 | 2020-11-27 |
評価 | 4.50/5 合計 2 レビュー |
開発者 | Krishna Bharadwaj |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/bharadwajpro/stadia-recorder |
ヘルプページのURL | https://github.com/bharadwajpro/stadia-recorder |
プライバシーポリシーページのURL | http://I collect no personal information |
対応言語 | 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 } |