Text Narrator

This extension narrates text on the page.

What is Text Narrator?

Text Narrator is a Chrome extension developed by Jeffrey Yang, and its main feature is "This extension narrates text on the page.".

Extension Screenshots

screenshot
screenshot

Download Text Narrator Extension CRX File

Download Text Narrator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Text Narrator Text Narrator
ID gmachijmpknamgdoelcmkcepbjilhfoe
Official URL https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe
Description This extension narrates text on the page.
File Size 18.79 KB
Installation Count 50,000
Current Version 1.0
Last Updated 2014-01-20
Publish Date 2014-01-20
Rating 2.94/5 Total 54 Ratings
Developer Jeffrey Yang
Payment Type free
Privacy Policy Page URL https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html
Supported Languages 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"
    }
}