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はhttps://jamieharrisonguitar.comによって開発された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拡張機能のCRXファイルをダウンロード
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! 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |