Ribbing Reader

Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.

¿Qué es Ribbing Reader?

Ribbing Reader es una extensión de Chrome desarrollada por https://www.ribbingreader.com, y su función principal es "Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Ribbing Reader

Descarga archivos de extensión Ribbing Reader 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

                        Automatic subtitles in your browser, using speech-to-text technology. The tool supports 32 languages and a number of dialects. Perfect for live presentations and in the classroom.                    

Información Básica de la Extensión

Nombre Ribbing Reader Ribbing Reader
ID ipilhfnbdkfbnbnahplmimdilodohknp
URL Oficial https://chromewebstore.google.com/detail/ribbing-reader/ipilhfnbdkfbnbnahplmimdilodohknp
Descripción Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.
Tamaño del Archivo 25.57 KB
Cantidad de Instalaciones 138
Versión Actual 1.0.11
Última Actualización 2017-10-17
Fecha de Publicación 2017-10-17
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador https://www.ribbingreader.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.ribbingreader.com
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ribbing Reader",
    "short_name": "Ribbing",
    "description": "Automatic browser subtitles using speech-to-text. 32 supported languages. Perfect for live presentations and in the classroom.",
    "version": "1.0.11",
    "homepage_url": "http:\/\/www.ribbingreader.com",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                ""
            ],
            "js": [
                "Subtitles.js",
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icons\/128.png",
        "default_popup": "popup.html",
        "default_title": "Ribbing Reader"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        "subtitles.html",
        "subtitles.css"
    ]
}