Text Narrator

This extension narrates text on the page.

Co je Text Narrator?

Text Narrator je rozšíření Chrome vyvinuté Jeffrey Yang, a jeho hlavní funkcí je „This extension narrates text on the page.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Text Narrator

Stáhněte si soubory rozšíření Text Narrator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This is an open source simple text-to-speech narrator that uses Chrome's built-in Text-to-Speech API.  

Tested on Windows 8 and OSX so far. Please report any issues.

Source code and issue tracking are available here:
https://github.com/sajacy/textnarrator-chrome-extension                    

Základní Informace o Rozšíření

Název Text Narrator Text Narrator
ID gmachijmpknamgdoelcmkcepbjilhfoe
Oficiální URL https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe
Popis This extension narrates text on the page.
Velikost souboru 18.79 KB
Počet instalací 50,000
Aktuální Verze 1.0
Poslední Aktualizace 2014-01-20
Datum Vydání 2014-01-20
Hodnocení 2.94/5 Celkem 54 Hodnocení
Vývojář Jeffrey Yang
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Narrator",
    "description": "This extension narrates text on the page.",
    "version": "1.0",
    "background": {
        "scripts": [
            "narrate.js",
            "background.js"
        ]
    },
    "icons": {
        "16": "img\/speak16.png",
        "48": "img\/speak48.png",
        "128": "img\/speak.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "tts",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_icon": "img\/speak.png",
        "default_popup": "popup.html"
    }
}