Custom Youtube Playback Speed

Easy way to change youtube video playback speed

什么是Custom Youtube Playback Speed?

Custom Youtube Playback Speed是由PH03NIX Software开发的Chrome扩展程序,该扩展的主要功能是“Easy way to change youtube video playback speed”。

扩展截图

screenshot
screenshot
screenshot

下载Custom Youtube Playback Speed扩展crx文件

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

扩展使用说明

                        Simple extension, which let you change playback speed of youtube videos.
You can setup value form range 0.10x to 10x with 0.10x step.

3 ways of control integrated into youtube interface: by slider, numeric input or by keys defined in settings.                    

扩展基本信息

名称 Custom Youtube Playback Speed Custom Youtube Playback Speed
ID mlnghacnjjppjfbbjbpkgcemiaglbpii
官方URL https://chromewebstore.google.com/detail/custom-youtube-playback-s/mlnghacnjjppjfbbjbpkgcemiaglbpii
简介 Easy way to change youtube video playback speed
文件大小 174 KB
安装次数 116
当前版本 1.4.3
更新时间 2023-12-03
上架时间 2022-02-01
评分 4.67/5 共3次评分
开发者 PH03NIX Software
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Youtube Playback Speed",
    "description": "Easy way to change youtube video playback speed",
    "version": "1.4.3",
    "short_name": "YTSpeed",
    "author": "Krzaku",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "index.html",
        "default_title": "Custom yt playback speed settings"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "\/icons\/extension_icon16.png",
        "32": "\/icons\/extension_icon32.png",
        "48": "\/icons\/extension_icon48.png",
        "128": "\/icons\/extension_icon128.png"
    }
}