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!
Hvad er Video Controller?
Video Controller er en Chrome-udvidelse udviklet af https://jamieharrisonguitar.com, og dens hovedfunktion er "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!".
Udvidelsesskærmbilleder
Download Video Controller-udvidelses-CRX-fil
Download Video Controller-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
Grundlæggende oplysninger om udvidelsen
Navn | Video Controller |
ID | jiobmmmoomjcbopacodijgfghbajbceg |
Officiel URL | https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg |
Beskrivelse | Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks! |
Filstørrelse | 558 KB |
Antal Installationer | 41 |
Nuværende Version | 1.0.10 |
Senest Opdateret | 2023-10-24 |
Udgivelsesdato | 2023-02-24 |
Udvikler | https://jamieharrisonguitar.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://jamieharrisonguitar.com |
Hjælpeside-URL | https://jamieharrisonguitar.com |
URL til Fortrolighedspolitik Side | https://jamieharrisonguitar.com/privacy-policy |
Understøttede Sprog | 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" ] } |