Stadia Recorder
Record stadia stream and save it to file system
Stadia Recorder क्या है?
Stadia Recorder Krishna Bharadwaj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Record stadia stream and save it to file system"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Stadia Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |