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".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Stadia Recorder

قم بتنزيل ملفات الامتداد Stadia Recorder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Record Stadia game stream in high quality and save it to local file system. Uses MediaRecorder API.                    

معلومات أساسية عن التمديد

الاسم Stadia Recorder Stadia Recorder
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
عنوان صفحة المساعدة https://github.com/bharadwajpro/stadia-recorder
عنوان صفحة سياسة الخصوصية 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
}