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
} | |