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 |
| 官方網址 | 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
} | |