Youtube Custom Speed

Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!

什么是Youtube Custom Speed?

Youtube Custom Speed是由nizioleque开发的Chrome扩展程序,该扩展的主要功能是“Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!”。

扩展截图

screenshot
screenshot
screenshot

下载Youtube Custom Speed扩展crx文件

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

扩展使用说明

                        Youtube Custom Speed lets you play any Youtube video at any speed you like, from 0.0125x to 16x!

Use the options menu to set your preferred playback rate values. Then, change the speed using buttons at the bottom of the video. It also cooperates with the default Youtube keyboard shortcuts - Shift + , and Shift + .

If you experience any issues, please feel free to email me with a bug report.                    

扩展基本信息

名称 Youtube Custom Speed Youtube Custom Speed
ID kmfcinojnfabkpndlgomnfjllgeppegb
官方URL https://chromewebstore.google.com/detail/youtube-custom-speed/kmfcinojnfabkpndlgomnfjllgeppegb
简介 Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!
文件大小 26.33 KB
安装次数 6,263
当前版本 1.6.1
更新时间 2022-02-19
上架时间 2021-12-02
评分 4.71/5 共48次评分
开发者 nizioleque
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.6.1",
    "default_locale": "en",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/changespeed.js",
                "content\/kbshort.js",
                "content\/menu.js",
                "content\/observer.js",
                "content\/configure.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "ui.html"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}