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"
    ]
}