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 |
| 电子邮箱 | [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"
]
} | |