iRead4u

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

Co to jest iRead4u?

iRead4u to rozszerzenie Chrome opracowane przez deep4788, a jego główną funkcją jest „Reads (text to speech) the currently highlighted text on the screen (current tab)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia iRead4u

Pobierz pliki rozszerzeń iRead4u w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa iRead4u iRead4u
ID pkmbaacpdcnaaeeddokcpdahdokceppb
Oficjalny URL https://chromewebstore.google.com/detail/iread4u/pkmbaacpdcnaaeeddokcpdahdokceppb
Opis Reads (text to speech) the currently highlighted text on the screen (current tab)
Rozmiar pliku 214 KB
Liczba instalacji 1,000
Aktualna Wersja 1.5.0
Ostatnia Aktualizacja 2016-11-02
Data Publikacji 2016-11-02
Ocena 2.00/5 Łącznie 12 Oceny
Deweloper deep4788
E-mail deep.uiuc@gmail.com
Typ Płatności free
Obsługiwane Języki 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"
    }
}