playrate

Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video

playrateとは何ですか?

playrateはEvawによって開発されたChromeの拡張機能で、その主な機能は「Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video」です。

拡張機能のスクリーンショット

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

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

拡張機能の使用方法

                        You can speedup or slowdown a video.

This extension allows you to control the playback rate of an html video on the current page.
The goal is to be very simple and just do one thing.

Disclaimer
 * if the video is played through a plugin like flash, this extension will not be able to function.                    

拡張機能の基本情報

名前 playrate playrate
ID pjefnlaeacgiihhaahpglacipajmbfjb
公式URL https://chrome.google.com/webstore/detail/playrate/pjefnlaeacgiihhaahpglacipajmbfjb
説明 Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video
ファイルサイズ 17.35 KB
インストール数 301
現在のバージョン 1.0.2
最終更新日 2016-04-07
公開日 2016-04-07
評価 5.00/5 合計 2 レビュー
開発者 Evaw
支払い方法 free
拡張機能のウェブサイト https://github.com/Evaw/playrate
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "playrate",
    "version": "1.0.2",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "playrate.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ]
}