Text Narrator

This extension narrates text on the page.

Wat is Text Narrator?

Text Narrator is een Chrome-extensie ontwikkeld door Jeffrey Yang, en de belangrijkste functie is "This extension narrates text on the page.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Text Narrator

Download Text Narrator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Text Narrator Text Narrator
ID gmachijmpknamgdoelcmkcepbjilhfoe
Officiële URL https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe
Beschrijving This extension narrates text on the page.
Bestandsgrootte 18.79 KB
Aantal Installaties 50,000
Huidige Versie 1.0
Laatst Bijgewerkt 2014-01-20
Publicatiedatum 2014-01-20
Beoordeling 2.94/5 Totaal 54 Beoordelingen
Ontwikkelaar Jeffrey Yang
Betalingswijze free
URL van de Privacybeleid Pagina https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html
Ondersteunde Talen 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"
    }
}