YouTube Accelerator

Accelerate your YouTube videos even faster!

什么是YouTube Accelerator?

YouTube Accelerator是由AndrewGDX开发的Chrome扩展程序,该扩展的主要功能是“Accelerate your YouTube videos even faster!”。

扩展截图

screenshot
screenshot
screenshot

下载YouTube Accelerator扩展crx文件

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

扩展使用说明

                        There is no UI, only keyboard shortcuts. Use '<' and '>' buttons (without shift) to speed up or speed down the video, and press 'R' to reset to the default speed. You can change hotkeys in settings. YouTube Shorts acceleration is working as well.

The plugin does not collect any statistics or personal data, feel free to use!

Source code: https://github.com/AndrewGDX/YouTubeAccelerator                    

扩展基本信息

名称 YouTube Accelerator YouTube Accelerator
ID kkbkajnjcpgpfkhgkcckeaindpjgfgib
官方URL https://chrome.google.com/webstore/detail/youtube-accelerator/kkbkajnjcpgpfkhgkcckeaindpjgfgib
简介 Accelerate your YouTube videos even faster!
文件大小 14.29 KB
安装次数 251
当前版本 0.6.0
更新时间 2023-07-20
上架时间 2022-10-30
评分 5.00/5 共3次评分
开发者 AndrewGDX
电子邮箱 [email protected]
隐私政策页面URL https://andrewgdx.github.io/ChromeWebStorePolicy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Accelerator",
    "version": "0.6.0",
    "description": "Accelerate your YouTube videos even faster!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "accelerator.css"
            ],
            "js": [
                "accelerator_plugin.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "settings.html"
    },
    "manifest_version": 3
}