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!

Vad är Video Controller?

Video Controller är en Chrome-tillägg utvecklad av https://jamieharrisonguitar.com, och dess huvudfunktion är "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Video Controller-förlängningens CRX-fil

Ladda ner Video Controller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Video Controller Video Controller
ID jiobmmmoomjcbopacodijgfghbajbceg
Officiell webbadress https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg
Beskrivning Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
Filstorlek 558 KB
Antal Installationer 41
Aktuell Version 1.0.10
Senast Uppdaterad 2023-10-24
Publiceringsdatum 2023-02-24
Utvecklare https://jamieharrisonguitar.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://jamieharrisonguitar.com
Hjälpsida URL https://jamieharrisonguitar.com
URL till Sekretesspolicy Sidan https://jamieharrisonguitar.com/privacy-policy
Stödda Språk 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"
    ]
}