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!
Cos'è Video Controller?
Video Controller è un'estensione di Chrome sviluppata da https://jamieharrisonguitar.com, e la sua funzione principale è "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Video Controller
Scarica i file di estensione Video Controller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
Informazioni di Base sull'Estensione
Nome | Video Controller |
ID | jiobmmmoomjcbopacodijgfghbajbceg |
URL Ufficiale | https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg |
Descrizione | Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks! |
Dimensione del File | 558 KB |
Conteggio Installazioni | 41 |
Versione Corrente | 1.0.10 |
Ultimo Aggiornamento | 2023-10-24 |
Data di Pubblicazione | 2023-02-24 |
Sviluppatore | https://jamieharrisonguitar.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://jamieharrisonguitar.com |
URL della Pagina di Aiuto | https://jamieharrisonguitar.com |
URL della Pagina della Politica sulla Privacy | https://jamieharrisonguitar.com/privacy-policy |
Lingue Supportate | 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" ] } |