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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ https://jamieharrisonguitar.com
URL หน้านโยบายความเป็นส่วนตัว 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"
    ]
}