playrate

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

O que é playrate?

playrate é uma extensão do Chrome desenvolvida por Evaw, e sua principal característica é "Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão playrate

Baixe arquivos de extensão playrate no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome playrate playrate
ID pjefnlaeacgiihhaahpglacipajmbfjb
URL Oficial https://chrome.google.com/webstore/detail/playrate/pjefnlaeacgiihhaahpglacipajmbfjb
Descrição Speed up or slow down videos in your page: youtube, vimeo, and others that use standard html5 video
Tamanho do Arquivo 17.35 KB
Contagem de Instalações 301
Versão Atual 1.0.2
Última Atualização 2016-04-07
Data de Publicação 2016-04-07
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Evaw
Tipo de Pagamento free
Site da Extensão https://github.com/Evaw/playrate
Idiomas Suportados 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"
    ]
}