Webpage Text Reader

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

Co to jest Webpage Text Reader?

Webpage Text Reader to rozszerzenie Chrome opracowane przez Webpage Text Reader, a jego główną funkcją jest „This extension will read any text you select on a webpage.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Webpage Text Reader

Pobierz pliki rozszerzeń Webpage Text Reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Webpage Text Reader Webpage Text Reader
ID ddiaokiifahmimgiijlbfohmppchkoca
Oficjalny URL https://chrome.google.com/webstore/detail/webpage-text-reader/ddiaokiifahmimgiijlbfohmppchkoca
Opis This extension will read any text you select on a webpage.
Rozmiar pliku 641 KB
Liczba instalacji 5,560
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2022-09-11
Data Publikacji 2022-09-11
Deweloper Webpage Text Reader
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}