Webpage Text Reader

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

Vad är Webpage Text Reader?

Webpage Text Reader är en Chrome-tillägg utvecklad av Webpage Text Reader, och dess huvudfunktion är "This extension will read any text you select on a webpage.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Webpage Text Reader-förlängningens CRX-fil

Ladda ner Webpage Text Reader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Webpage Text Reader Webpage Text Reader
ID ddiaokiifahmimgiijlbfohmppchkoca
Officiell webbadress https://chrome.google.com/webstore/detail/webpage-text-reader/ddiaokiifahmimgiijlbfohmppchkoca
Beskrivning This extension will read any text you select on a webpage.
Filstorlek 641 KB
Antal Installationer 5,560
Aktuell Version 1.2
Senast Uppdaterad 2022-09-11
Publiceringsdatum 2022-09-11
Utvecklare Webpage Text Reader
E-post [email protected]
Betalningssätt free
Stödda Språk 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": [
                ""
            ]
        }
    ]
}