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!

Qu'est-ce que Video Controller ?

Video Controller est une extension Chrome développée par https://jamieharrisonguitar.com, et sa fonction principale est "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Video Controller

Téléchargez les fichiers d'extension Video Controller au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Video Controller Video Controller
ID jiobmmmoomjcbopacodijgfghbajbceg
URL Officiel https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg
Description Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
Taille du Fichier 558 KB
Nombre d'Installations 41
Version Actuelle 1.0.10
Dernière Mise à Jour 2023-10-24
Date de Publication 2023-02-24
Développeur https://jamieharrisonguitar.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://jamieharrisonguitar.com
URL de la Page d'Aide https://jamieharrisonguitar.com
URL de la Page de Politique de Confidentialité https://jamieharrisonguitar.com/privacy-policy
Langues Prises en Charge 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"
    ]
}