Video Speed Controller

Control video speed of video's on any page with the simple chrome extension

ما هو Video Speed Controller؟

Video Speed Controller هو إضافة Chrome تم تطويرها بواسطة videospeedcontrollerpro، والميزة الرئيسية لها هي "Control video speed of video's on any page with the simple chrome extension".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Video Speed Controller

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

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

                        Control video speed of video's on any page with the simple chrome extension                    

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

الاسم Video Speed Controller Video Speed Controller
ID gmbmliclljegcljoncmaoccifcfmkaem
عنوان URL الرسمي https://chromewebstore.google.com/detail/video-speed-controller/gmbmliclljegcljoncmaoccifcfmkaem
الوصف Control video speed of video's on any page with the simple chrome extension
حجم الملف 66.69 KB
عدد التثبيتات 3,218
النسخة الحالية 1.1
آخر تحديث 2023-06-29
تاريخ النشر 2023-06-20
تقييم 5.00/5 مجموع تقييمات 1
المطور videospeedcontrollerpro
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Controller",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icon128.png",
            "64": "icon128.png",
            "128": "icon128.png"
        }
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "32": "icon128.png",
        "64": "icon128.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "commands": {
        "increase-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up"
            },
            "description": "Increase video speed"
        },
        "decrease-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Decrease video speed"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}