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!".
Снимки экрана расширения
Скачать файл 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 |
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" ] } |