Speak

Speak lets you use speech-to-text to provide live captions for presentations

什么是Speak?

Speak是由charlie.a.gerard开发的Chrome扩展程序,该扩展的主要功能是“Speak lets you use speech-to-text to provide live captions for presentations”。

扩展截图

下载Speak扩展crx文件

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

扩展使用说明

                        Speak is a Chrome extension using the Speech Recognition API to provide a speech-to-text interface as an overlay on a website.
The main goal is to allow people to make their presentations more accessible for the deaf and hard-of-hearing.

It currently works with mdx-deck, reveal.js and spectacle.                    

扩展基本信息

名称 Speak Speak
ID kafbpkaodnkapgalobfodcpbioffcngc
官方URL https://chromewebstore.google.com/detail/speak/kafbpkaodnkapgalobfodcpbioffcngc
简介 Speak lets you use speech-to-text to provide live captions for presentations
文件大小 19.16 KB
安装次数 888
当前版本 4
更新时间 2018-11-18
上架时间 2018-11-15
评分 3.00/5 共1次评分
开发者 charlie.a.gerard
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/charliegerard/extension
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Speak",
    "description": "Speak lets you use speech-to-text to provide live captions for presentations",
    "version": "4",
    "author": "Charlie Gerard",
    "short_name": "Speak",
    "browser_action": {
        "default_icon": "caption.png",
        "default_title": "Speak",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "caption16.png",
        "48": "caption48.png",
        "128": "caption128.png"
    },
    "minimum_chrome_version": "25",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ]
}