Stadia Recorder
Record stadia stream and save it to file system
Stadia Recorderคืออะไร?
Stadia Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Krishna Bharadwaj และคุณลักษณะหลักของมันคือ "Record stadia stream and save it to file system"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stadia Recorder
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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 } |