VoiceRead

This extension makes reading on Chrome easy and audible

Was ist VoiceRead?

VoiceRead ist eine Chrome-Erweiterung, die von VoiceRead entwickelt wurde, und ihr Hauptmerkmal ist "This extension makes reading on Chrome easy and audible".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

VoiceRead-Erweiterungs-CRX-Datei herunterladen

Laden Sie VoiceRead-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name VoiceRead VoiceRead
ID mpokbdfilhadmbipblkpehbikcblpfam
Offizielle URL https://chromewebstore.google.com/detail/voiceread/mpokbdfilhadmbipblkpehbikcblpfam
Beschreibung This extension makes reading on Chrome easy and audible
Dateigröße 39.33 KB
Installationsanzahl 1,220
Aktuelle Version 1.0
Letztes Update 2022-06-14
Veröffentlichungsdatum 2016-01-11
Bewertung 3.22/5 Insgesamt 9 Bewertungen
Entwickler VoiceRead
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}