VoiceRead

This extension makes reading on Chrome easy and audible

VoiceRead란 무엇입니까?

VoiceRead은(는) VoiceRead에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension makes reading on Chrome easy and audible"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

VoiceRead 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 VoiceRead VoiceRead
ID mpokbdfilhadmbipblkpehbikcblpfam
공식 URL https://chromewebstore.google.com/detail/voiceread/mpokbdfilhadmbipblkpehbikcblpfam
설명 This extension makes reading on Chrome easy and audible
파일 크기 39.33 KB
설치 횟수 1,220
현재 버전 1.0
최근 업데이트 2022-06-14
출시 날짜 2016-01-11
평점 3.22/5 총 9 개의 평점
개발자 VoiceRead
이메일 [email protected]
결제 유형 free
지원되는 언어 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:\/\/*\/*"
    ]
}