Video Speed Controller
Control HTML video speed.
什么是Video Speed Controller?
Video Speed Controller是由jojonki开发的Chrome扩展程序,该扩展的主要功能是“Control HTML video speed.”。
扩展截图
下载Video Speed Controller扩展crx文件
下载Video Speed Controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Control Youtube video speed with shortcuts. Unlike Youtube original speed adjustment, you can speed up as much as you want.
- Ctrl + Shift + L : Speed Up.
- Ctrl + Shift + J : Speed Down.
- Ctrl + Shift + K : Speed Neutral.
You can customize the shortcuts at chrome://extensions/shortcuts.
The source code is fully available.
https://github.com/jojonki/video-speed-controller 扩展基本信息
| 名称 | |
| ID | ndbdjjgcjmdenadephbmglknakcnalil |
| 官方URL | https://chromewebstore.google.com/detail/video-speed-controller/ndbdjjgcjmdenadephbmglknakcnalil |
| 简介 | Control HTML video speed. |
| 文件大小 | 637 KB |
| 安装次数 | 415 |
| 当前版本 | 2.0 |
| 更新时间 | 2022-12-29 |
| 上架时间 | 2021-03-07 |
| 评分 | 4.50/5 共2次评分 |
| 开发者 | jojonki |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/jojonki/video-speed-controller/ |
| 帮助页面URL | https://github.com/jojonki/video-speed-controller/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Video Speed Controller",
"version": "2.0",
"description": "Control HTML video speed.",
"permissions": [
"scripting",
"activeTab",
"notifications"
],
"host_permissions": [
"https:\/\/youtube.com\/*"
],
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "images\/icon_16.png",
"24": "images\/icon_24.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"default_title": "Control Video Speed"
},
"commands": {
"speed-up": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "MacCtrl+Shift+L"
},
"description": "Speed Up",
"global": false
},
"speed-down": {
"suggested_key": {
"default": "Ctrl+Shift+J",
"mac": "MacCtrl+Shift+J"
},
"description": "Speed Down",
"global": false
},
"speed-neutral": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "MacCtrl+Shift+K"
},
"description": "Speed Neutral",
"global": false
}
},
"icons": {
"16": "images\/icon_16.png",
"24": "images\/icon_24.png",
"32": "images\/icon_32.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
}
} | |