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!
Co to jest Video Controller?
Video Controller to rozszerzenie Chrome opracowane przez https://jamieharrisonguitar.com, a jego główną funkcją jest „Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Video Controller
Pobierz pliki rozszerzeń Video Controller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
Podstawowe informacje o rozszerzeniu
Nazwa | Video Controller |
ID | jiobmmmoomjcbopacodijgfghbajbceg |
Oficjalny URL | https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg |
Opis | Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks! |
Rozmiar pliku | 558 KB |
Liczba instalacji | 41 |
Aktualna Wersja | 1.0.10 |
Ostatnia Aktualizacja | 2023-10-24 |
Data Publikacji | 2023-02-24 |
Deweloper | https://jamieharrisonguitar.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://jamieharrisonguitar.com |
Adres URL Strony Pomocy | https://jamieharrisonguitar.com |
Adres URL Strony Polityki Prywatności | https://jamieharrisonguitar.com/privacy-policy |
Obsługiwane Języki | 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" ] } |