Webpage Text Reader

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

Webpage Text Readerとは何ですか?

Webpage Text ReaderはWebpage Text Readerによって開発されたChromeの拡張機能で、その主な機能は「This extension will read any text you select on a webpage.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Webpage Text Reader拡張機能のCRXファイルをダウンロード

Webpage Text Reader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Webpage Text Reader Webpage Text Reader
ID ddiaokiifahmimgiijlbfohmppchkoca
公式URL https://chrome.google.com/webstore/detail/webpage-text-reader/ddiaokiifahmimgiijlbfohmppchkoca
説明 This extension will read any text you select on a webpage.
ファイルサイズ 641 KB
インストール数 5,560
現在のバージョン 1.2
最終更新日 2022-09-11
公開日 2022-09-11
開発者 Webpage Text Reader
Eメール [email protected]
支払い方法 free
対応言語 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": [
                ""
            ]
        }
    ]
}