Webpage Text Reader

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

Cos'è Webpage Text Reader?

Webpage Text Reader è un'estensione di Chrome sviluppata da Webpage Text Reader, e la sua funzione principale è "This extension will read any text you select on a webpage.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Webpage Text Reader

Scarica i file di estensione Webpage Text Reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Webpage Text Reader Webpage Text Reader
ID ddiaokiifahmimgiijlbfohmppchkoca
URL Ufficiale https://chrome.google.com/webstore/detail/webpage-text-reader/ddiaokiifahmimgiijlbfohmppchkoca
Descrizione This extension will read any text you select on a webpage.
Dimensione del File 641 KB
Conteggio Installazioni 5,560
Versione Corrente 1.2
Ultimo Aggiornamento 2022-09-11
Data di Pubblicazione 2022-09-11
Sviluppatore Webpage Text Reader
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}