Speak Faster

Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!

¿Qué es Speak Faster?

Speak Faster es una extensión de Chrome desarrollada por viktor.vesely.vv, y su función principal es "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Speak Faster

Descarga archivos de extensión Speak Faster 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

                        Are you tired of watching videos at normal speed? If yes, then this extension is for you! Speed up your school lectures or skip annoying video ads, the sky is the limit...                    

Información Básica de la Extensión

Nombre Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
URL Oficial https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
Descripción Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
Tamaño del Archivo 66.61 KB
Cantidad de Instalaciones 74
Versión Actual 1.3
Última Actualización 2020-05-01
Fecha de Publicación 2020-05-01
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador viktor.vesely.vv
Tipo de Pago free
URL de la Página de Ayuda https://github.com/viktorvesely/speakFaster
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak Faster",
    "version": "1.3",
    "description": "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!",
    "manifest_version": 2,
    "icons": {
        "128": "\/assets\/faster-icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "tabs"
    ],
    "web_accessible_resources": [
        "\/content\/inject.html"
    ],
    "background": {
        "scripts": [
            "\/shared\/msg.js",
            "\/background\/main.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "\/popup\/index.html",
        "default_icon": {
            "128": "\/assets\/faster-icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "\/shared\/msg.js",
                "\/content\/change.js",
                "\/content\/position.js",
                "\/content\/main.js"
            ],
            "css": [
                "\/content\/change.css"
            ]
        }
    ]
}