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!
O que é Video Controller?
Video Controller é uma extensão do Chrome desenvolvida por https://jamieharrisonguitar.com, e sua principal característica é "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Video Controller
Baixe arquivos de extensão Video Controller no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
Informações Básicas da Extensão
Nome | Video Controller |
ID | jiobmmmoomjcbopacodijgfghbajbceg |
URL Oficial | https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg |
Descrição | Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks! |
Tamanho do Arquivo | 558 KB |
Contagem de Instalações | 41 |
Versão Atual | 1.0.10 |
Última Atualização | 2023-10-24 |
Data de Publicação | 2023-02-24 |
Desenvolvedor | https://jamieharrisonguitar.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://jamieharrisonguitar.com |
URL da Página de Ajuda | https://jamieharrisonguitar.com |
URL da Página de Política de Privacidade | https://jamieharrisonguitar.com/privacy-policy |
Idiomas Suportados | 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" ] } |