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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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": [
                ""
            ]
        }
    ]
}