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
官方網址 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
}