Webpage Text Reader

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

Apa itu Webpage Text Reader?

Webpage Text Reader adalah ekstensi Chrome yang dikembangkan oleh Webpage Text Reader, dan fitur utamanya adalah "This extension will read any text you select on a webpage.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Webpage Text Reader

Unduh file ekstensi Webpage Text Reader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Webpage Text Reader Webpage Text Reader
ID ddiaokiifahmimgiijlbfohmppchkoca
URL Resmi https://chrome.google.com/webstore/detail/webpage-text-reader/ddiaokiifahmimgiijlbfohmppchkoca
Deskripsi This extension will read any text you select on a webpage.
Ukuran File 641 KB
Jumlah Instalasi 5,560
Versi Saat Ini 1.2
Terakhir Diperbarui 2022-09-11
Tanggal Publikasi 2022-09-11
Pengembang Webpage Text Reader
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}