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!
What is Video Controller?
Video Controller is a Chrome extension developed by https://jamieharrisonguitar.com, and its main feature is "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!".
Extension Screenshots
Download Video Controller Extension CRX File
Download Video Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
Extension Basic Information
Name | Video Controller |
ID | jiobmmmoomjcbopacodijgfghbajbceg |
Official URL | https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg |
Description | Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks! |
File Size | 558 KB |
Installation Count | 41 |
Current Version | 1.0.10 |
Last Updated | 2023-10-24 |
Publish Date | 2023-02-24 |
Developer | https://jamieharrisonguitar.com |
[email protected] | |
Payment Type | free |
Extension Website | https://jamieharrisonguitar.com |
Help Page URL | https://jamieharrisonguitar.com |
Privacy Policy Page URL | https://jamieharrisonguitar.com/privacy-policy |
Supported Languages | 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" ] } |