Text Narrator

This extension narrates text on the page.

什么是Text Narrator?

Text Narrator是由Jeffrey Yang开发的Chrome扩展程序,该扩展的主要功能是“This extension narrates text on the page.”。

扩展截图

screenshot
screenshot

下载Text Narrator扩展crx文件

下载Text Narrator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Text Narrator Text Narrator
ID gmachijmpknamgdoelcmkcepbjilhfoe
官方URL https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe
简介 This extension narrates text on the page.
文件大小 18.79 KB
安装次数 50,000
当前版本 1.0
更新时间 2014-01-20
上架时间 2014-01-20
评分 2.94/5 共54次评分
开发者 Jeffrey Yang
付费类型 free
隐私政策页面URL https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html
支持的语言 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"
    }
}