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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}