Playback Speed

Change the playback speed for video or audio clips on any website!

¿Qué es Playback Speed?

Playback Speed es una extensión de Chrome desarrollada por reveratenm, y su función principal es "Change the playback speed for video or audio clips on any website!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Playback Speed

Descarga archivos de extensión Playback Speed en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Web browsers have native capability of slowing down or speeding up audio and video content on almost any website. This extension taps into this functionality to let you change the playback rate even on websites that do not make that functionality available through it's standard user interface. This extension is extremely lightweight with a very simple user interface and no fancy bells and whistles - just gets the job done!                    

Información Básica de la Extensión

Nombre Playback Speed Playback Speed
ID gjeblkgnjlgadjnebddcllncefmmleio
URL Oficial https://chromewebstore.google.com/detail/playback-speed/gjeblkgnjlgadjnebddcllncefmmleio
Descripción Change the playback speed for video or audio clips on any website!
Tamaño del Archivo 17.16 KB
Cantidad de Instalaciones 487
Versión Actual 1.2
Última Actualización 2020-10-20
Fecha de Publicación 2020-10-17
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador reveratenm
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Playback Speed",
    "version": "1.2",
    "description": "Change the playback speed for video or audio clips on any website!",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}