iRead4u

Reads (text to speech) the currently highlighted text on the screen (current tab)

Was ist iRead4u?

iRead4u ist eine Chrome-Erweiterung, die von deep4788 entwickelt wurde, und ihr Hauptmerkmal ist "Reads (text to speech) the currently highlighted text on the screen (current tab)".

Erweiterungsscreenshots

screenshot

iRead4u-Erweiterungs-CRX-Datei herunterladen

Laden Sie iRead4u-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

                        Reads the currently highlighted text on the screen; converts highlighted text to speech.

Highlight the text you want to be read and do either of:
- Press [Alt+Shift+S] or
- Click on the extension's icon


Follow me on:
- Twitter: https://twitter.com/?lang=en
- GitHub: https://github.com/deep4788                    

Grundlegende Informationen zur Erweiterung

Name iRead4u iRead4u
ID pkmbaacpdcnaaeeddokcpdahdokceppb
Offizielle URL https://chromewebstore.google.com/detail/iread4u/pkmbaacpdcnaaeeddokcpdahdokceppb
Beschreibung Reads (text to speech) the currently highlighted text on the screen (current tab)
Dateigröße 214 KB
Installationsanzahl 1,000
Aktuelle Version 1.5.0
Letztes Update 2016-11-02
Veröffentlichungsdatum 2016-11-02
Bewertung 2.00/5 Insgesamt 12 Bewertungen
Entwickler deep4788
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "iRead4u",
    "short_name": "iRead4u",
    "description": "Reads (text to speech) the currently highlighted text on the screen (current tab)",
    "version": "1.5.0",
    "manifest_version": 2,
    "author": "Deep Aggarwal ",
    "commands": {
        "read-highlighted": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Reads highlighted text on the screen (current tab)"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Read Highlighted Text"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    }
}