Webpage Text Reader

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

Webpage Text Readerคืออะไร?

Webpage Text Reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Webpage Text Reader และคุณลักษณะหลักของมันคือ "This extension will read any text you select on a webpage."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Webpage Text Reader

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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": [
                ""
            ]
        }
    ]
}