Screen Reader for Google Chrome

This extension provides aid for the visually impaired people.

Screen Reader for Google Chrome là gì?

Screen Reader for Google Chrome là một tiện ích mở rộng Chrome được phát triển bởi Pawel Psztyc, và tính năng chính của nó là "This extension provides aid for the visually impaired people.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Screen Reader for Google Chrome

Tải xuống các tệp mở rộng Screen Reader for Google Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The extensions allow you to click on a text on a web page to read it aloud using the built-in text-to-speech (TTS) service. You can configure which TTS service to use by clicking on the extension's icon and selecting your favorite voice from the configuration dialog.

It is a Google Hackathon 2012 in Warsaw, Poland, Chrome extension. Each operating system has a text-to-speech service, so consider using them first. 

If you need a new feature or spot an issue, you can report it on my GitHub page. I will respond as soon as possible. Remember that it is a side project, and I may have other priorities. But I will try to help as much as I can.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Screen Reader for Google Chrome Screen Reader for Google Chrome
ID nddfhonnmhcldcbmhbdldfpkbfpgjoeh
URL Chính Thức https://chromewebstore.google.com/detail/screen-reader-for-google/nddfhonnmhcldcbmhbdldfpkbfpgjoeh
Mô tả This extension provides aid for the visually impaired people.
Kích Thước Tệp 195 KB
Số Lần Cài Đặt 10,222
Phiên Bản Hiện Tại 0.8.0
Cập Nhật Lần Cuối 2023-12-12
Ngày Phát Hành 2015-01-08
Đánh Giá 2.32/5 Tổng số 53 Đánh Giá
Nhà Phát Triển Pawel Psztyc
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/17TsJl75HnVp7m970j_8bbWJD-2vvg7_MqEtHkp-k1mM/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Reader for Google Chrome",
    "short_name": "Screen Reader",
    "version": "0.8.0",
    "manifest_version": 3,
    "description": "This extension provides aid for the visually impaired people.",
    "default_locale": "en",
    "minimum_chrome_version": "120",
    "icons": {
        "32": "img\/32x32-on.png",
        "48": "img\/48x48-on.png",
        "128": "img\/128x128-on.png"
    },
    "background": {
        "service_worker": "src\/worker.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "tts"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/content\/audio.js",
                "src\/content\/video.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "img\/16x16-on.png",
            "32": "img\/32x32-on.png"
        },
        "default_title": "Show options",
        "default_popup": "options.html"
    }
}