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
Eメール [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
    }
}