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 |
| 电子邮箱 | [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
} | |