Speak

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

Speak là gì?

Speak là một tiện ích mở rộng Chrome được phát triển bởi charlie.a.gerard, và tính năng chính của nó là "Speak lets you use speech-to-text to provide live captions for presentations".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Speak

Tải xuống các tệp mở rộng Speak dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Speak Speak
ID kafbpkaodnkapgalobfodcpbioffcngc
URL Chính Thức https://chromewebstore.google.com/detail/speak/kafbpkaodnkapgalobfodcpbioffcngc
Mô tả Speak lets you use speech-to-text to provide live captions for presentations
Kích Thước Tệp 19.16 KB
Số Lần Cài Đặt 888
Phiên Bản Hiện Tại 4
Cập Nhật Lần Cuối 2018-11-18
Ngày Phát Hành 2018-11-15
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển charlie.a.gerard
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/charliegerard/extension
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}