Youtube Speed Control Hotkeys

Allows you to customize your own speed control hotkeys in Youtube

什么是Youtube Speed Control Hotkeys?

Youtube Speed Control Hotkeys是由krsntn开发的Chrome扩展程序,该扩展的主要功能是“Allows you to customize your own speed control hotkeys in Youtube”。

扩展截图

screenshot
screenshot
screenshot

下载Youtube Speed Control Hotkeys扩展crx文件

下载Youtube Speed Control Hotkeys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        You can customize your own hotkeys to speed up and speed down the playing video on youtube.

This extension only works on youtube.


========================================================
Version 1.0.20
- Fixes initial load bug

Version 1.0.19
- Migrate to Manifest V3

Version 1.0.18
- Bug fixes and performance improvements

Version 1.0.9
- Remove "Seek backward & forward" feature from extension, as Youtube had include this feature in the latest update.

Version 1.0.8
- Added inactive icon

Version 1.0.7
- Seek backward & forward works even the focus element is not on video player

Version 1.0.6
- New configuration effect immediate change without the needs of refreshing page

Version 1.0.1
- Updated on configuration UI display

Version 1.0
- Basic customization that allows you to customize your own hotkeys of changing youtube playback speed rate.                    

扩展基本信息

名称 Youtube Speed Control Hotkeys Youtube Speed Control Hotkeys
ID opcjoeippmphadnkmkjocmingcbpmepn
官方URL https://chromewebstore.google.com/detail/youtube-speed-control-hot/opcjoeippmphadnkmkjocmingcbpmepn
简介 Allows you to customize your own speed control hotkeys in Youtube
文件大小 578 KB
安装次数 490
当前版本 1.0.20
更新时间 2024-01-04
上架时间 2020-06-10
评分 4.17/5 共6次评分
开发者 krsntn
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Speed Control Hotkeys",
    "version": "1.0.20",
    "description": "Allows you to customize your own speed control hotkeys in Youtube",
    "icons": {
        "128": "\/images\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3
}