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