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"
    ]
}