VoiceRead

This extension makes reading on Chrome easy and audible

VoiceRead là gì?

VoiceRead là một tiện ích mở rộng Chrome được phát triển bởi VoiceRead, và tính năng chính của nó là "This extension makes reading on Chrome easy and audible".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng VoiceRead

Tải xuống các tệp mở rộng VoiceRead 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

                        VoiceRead is a Google Chrome extension made to make reading the web a breeze. Inspired by the VoiceDream app on iPad, VoiceRead integrates text-to-speech with synchronized highlighting and a customizable personalized web reading interface. It was originally made for 6.811 at MIT, Principles and Practices of Assistive Technology, to help assist a client with dyslexia. 

NOTE THIS IS A BETA VERSION. There are bugs, and some voices are not as well supported as others. VoiceRead is open-source, feel free to fix any bugs you find here: https://github.com/jinmajin/voiceread-for-chrome

Currently English-only, but if there is interest we can adapt for other languages.

Instructions:
To use, highlight text in the browser and hit the shortcut "ALT+R" to open VoiceRead. You can pause/play by selecting the button in the corner or also by hitting spacebar. Hit "S" while in VoiceRead to open/close the settings panel. You can also use the left and right arrow keys to increase/decrease reading speed on the fly.                    

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

Tên VoiceRead VoiceRead
ID mpokbdfilhadmbipblkpehbikcblpfam
URL Chính Thức https://chromewebstore.google.com/detail/voiceread/mpokbdfilhadmbipblkpehbikcblpfam
Mô tả This extension makes reading on Chrome easy and audible
Kích Thước Tệp 39.33 KB
Số Lần Cài Đặt 1,220
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-06-14
Ngày Phát Hành 2016-01-11
Đánh Giá 3.22/5 Tổng số 9 Đánh Giá
Nhà Phát Triển VoiceRead
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VoiceRead",
    "description": "This extension makes reading on Chrome easy and audible",
    "version": "1.0",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/highlight.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "tts",
        "fontSettings"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}