Webpage Text Reader

This extension will read any text you select on a webpage.

¿Qué es Webpage Text Reader?

Webpage Text Reader es una extensión de Chrome desarrollada por Webpage Text Reader, y su función principal es "This extension will read any text you select on a webpage.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Webpage Text Reader

Descarga archivos de extensión Webpage Text 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

                        This extension will read any text on a webpage that you highlight, just simply highlight the text right click and click on Speak It.  Then it will say the highlight text for you to hear so easy to use.

Extension options are:
* Language
* Rate
* Pitch
* Volume                    

Información Básica de la Extensión

Nombre Webpage Text Reader Webpage Text Reader
ID ddiaokiifahmimgiijlbfohmppchkoca
URL Oficial https://chrome.google.com/webstore/detail/webpage-text-reader/ddiaokiifahmimgiijlbfohmppchkoca
Descripción This extension will read any text you select on a webpage.
Tamaño del Archivo 641 KB
Cantidad de Instalaciones 5,560
Versión Actual 1.2
Última Actualización 2022-09-11
Fecha de Publicación 2022-09-11
Desarrollador Webpage Text Reader
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Webpage Text Reader",
    "description": "This extension will read any text you select on a webpage.",
    "version": "1.2",
    "offline_enabled": true,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon-128.png"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "tts",
        "storage",
        "alarms"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "injected_content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}