Youtube Playback Gearstick

Accelerates youtube playback speed when clicked going through a cycle(X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)

Youtube Playback Gearstickとは何ですか?

Youtube Playback GearstickはMichael zlatinによって開発されたChromeの拡張機能で、その主な機能は「Accelerates youtube playback speed when clicked going through a cycle(X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)」です。

Youtube Playback Gearstick拡張機能のCRXファイルをダウンロード

Youtube Playback Gearstick拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is a simple extension to extend the playback speeds for YouTube™ videos.
in addition to the regular speeds (X0.25,X0.5,X1,X1.25,X1.5,X2) that YouTube™ provides it enables these speeds (X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)
plus its persistent across tabs, so once a speed is set it will affect other videos on reload                    

拡張機能の基本情報

名前 Youtube Playback Gearstick Youtube Playback Gearstick
ID hippcojfnmieddlhckhloiooljlnepgp
公式URL https://chromewebstore.google.com/detail/youtube-playback-gearstic/hippcojfnmieddlhckhloiooljlnepgp
説明 Accelerates youtube playback speed when clicked going through a cycle(X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)
ファイルサイズ 8.11 KB
インストール数 192
現在のバージョン 0.1
最終更新日 2017-07-31
公開日 2017-07-30
評価 4.00/5 合計 5 レビュー
開発者 Michael zlatin
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Playback Gearstick",
    "short_name": "YTG",
    "description": "Accelerates youtube playback speed when clicked going through a cycle(X0.01 X0.1 X0.25,X0.5,X1,X1.25,X1.5,X2,X2.5,X3,X3.5,X4,X5,X10)",
    "manifest_version": 2,
    "author": "Michael Zlatin",
    "version": "0.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "name": "Click to change speed"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "off.png"
    }
}