Video Stream Master

For controlling video playback speed and other features

ما هو Video Stream Master؟

Video Stream Master هو إضافة Chrome تم تطويرها بواسطة tsonglew، والميزة الرئيسية لها هي "For controlling video playback speed and other features".

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

screenshot

تحميل ملف CRX للإضافة Video Stream Master

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

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

                        Video player master for controlling video playback speed and other features                    

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

الاسم Video Stream Master Video Stream Master
ID knnigbekdblcdhjlnmpcfijkeffenhmp
عنوان URL الرسمي https://chromewebstore.google.com/detail/video-stream-master/knnigbekdblcdhjlnmpcfijkeffenhmp
الوصف For controlling video playback speed and other features
حجم الملف 709 KB
عدد التثبيتات 46
النسخة الحالية 1.0
آخر تحديث 2023-03-01
تاريخ النشر 2023-03-01
المطور tsonglew
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/tsonglew/video-stream-master
عنوان صفحة المساعدة https://github.com/tsonglew/video-stream-master/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Stream Master",
    "description": "For controlling video playback speed and other features",
    "version": "1.0",
    "icons": {
        "16": "logo.ico",
        "32": "logo.ico",
        "48": "logo.ico",
        "128": "logo.ico"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/js\/content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "commands": {
        "speedup": {
            "suggested_key": {
                "default": "Ctrl+Shift+W",
                "mac": "MacCtrl+Shift+W"
            },
            "description": "increase playspeed rate"
        },
        "speeddown": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            },
            "description": "decrease playspeed rate"
        }
    },
    "background": {
        "service_worker": "static\/js\/background.js"
    }
}