playrate

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

What is playrate?

playrate is a Chrome extension developed by Evaw, and its main feature is "Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video".

Extension Screenshots

Download playrate Extension CRX File

Download playrate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name playrate playrate
ID pjefnlaeacgiihhaahpglacipajmbfjb
Official URL https://chrome.google.com/webstore/detail/playrate/pjefnlaeacgiihhaahpglacipajmbfjb
Description Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video
File Size 17.35 KB
Installation Count 301
Current Version 1.0.2
Last Updated 2016-04-07
Publish Date 2016-04-07
Rating 5.00/5 Total 2 Ratings
Developer Evaw
Payment Type free
Extension Website https://github.com/Evaw/playrate
Supported Languages 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"
    ]
}