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!
Was ist Video Controller?
Video Controller ist eine Chrome-Erweiterung, die von https://jamieharrisonguitar.com entwickelt wurde, und ihr Hauptmerkmal ist "Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!".
Erweiterungsscreenshots
Video Controller-Erweiterungs-CRX-Datei herunterladen
Laden Sie Video Controller-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks!
Grundlegende Informationen zur Erweiterung
Name | Video Controller |
ID | jiobmmmoomjcbopacodijgfghbajbceg |
Offizielle URL | https://chromewebstore.google.com/detail/video-controller/jiobmmmoomjcbopacodijgfghbajbceg |
Beschreibung | Slow down, speed up, loop, and adjust the pitch of any video online. Integrate with Lick Locker and save all your favorite licks! |
Dateigröße | 558 KB |
Installationsanzahl | 41 |
Aktuelle Version | 1.0.10 |
Letztes Update | 2023-10-24 |
Veröffentlichungsdatum | 2023-02-24 |
Entwickler | https://jamieharrisonguitar.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://jamieharrisonguitar.com |
Hilfeseite URL | https://jamieharrisonguitar.com |
URL der Datenschutzrichtlinien-Seite | https://jamieharrisonguitar.com/privacy-policy |
Unterstützte Sprachen | 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" ] } |