Video Controller

Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!

ما هو Video Controller؟

Video Controller هو إضافة Chrome تم تطويرها بواسطة https://jamieharrisonguitar.com، والميزة الرئيسية لها هي "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!".

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

screenshot
screenshot
screenshot

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

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

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

                        Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!                    

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

الاسم Video Controller Video Controller
ID jiobmmmoomjcbopacodijgfghbajbceg
عنوان URL الرسمي https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg
الوصف Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
حجم الملف 558 KB
عدد التثبيتات 41
النسخة الحالية 1.0.10
آخر تحديث 2023-10-24
تاريخ النشر 2023-02-24
المطور https://jamieharrisonguitar.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://jamieharrisonguitar.com
عنوان صفحة المساعدة https://jamieharrisonguitar.com
عنوان صفحة سياسة الخصوصية https://jamieharrisonguitar.com/privacy-policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!",
    "version": "1.0.10",
    "manifest_version": 3,
    "name": "Video Controller",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "logo-square.png"
    },
    "icons": {
        "128": "logo-square.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/vimeo.com\/*",
                "https:\/\/www.jamieharrisonguitar.com\/*",
                "https:\/\/www.jamieharrisonguitar.com\/video-detail"
            ],
            "js": [
                "keyCommands.bundle.js",
                "loopSlider.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "open-btn.png",
                "leftArrow.png",
                "rightArrow.png",
                "reset2.png",
                "reset3.png",
                "reset4.png",
                "locker.png",
                "audioworklet-processor.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ]
}