Speechy

Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.

Speechy란 무엇입니까?

Speechy은(는) hmirin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key."입니다.

확장 프로그램 스크린샷

screenshot

Speechy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Wrapper for Paid High Quality Text-to-Speech (TTS) APIs like Google's Wavenet and OpenAI TTS. To use this extension, you need your API key.

- Supported APIs 
   - Google Cloud Text-to-Speech API (includes WaveNet voices)
   - OpenAI Text-to-Speech API

- Feature
   - Read selected text
   - Choose voice
   - Change voice speed (Only for Google)                    

확장 프로그램 기본 정보

이름 Speechy Speechy
ID flpjdaabfegkkifhogoilelmjcipihnp
공식 URL https://chromewebstore.google.com/detail/speechy/flpjdaabfegkkifhogoilelmjcipihnp
설명 Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.
파일 크기 465 KB
설치 횟수 739
현재 버전 0.2.1
최근 업데이트 2024-02-22
출시 날짜 2018-07-19
평점 3.92/5 총 12 개의 평점
개발자 hmirin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://hmirin.github.io/speechy/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Speechy",
    "version": "0.2.1",
    "description": "Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/api.openai.com\/v1\/audio\/speech",
        "https:\/\/texttospeech.googleapis.com\/v1beta1\/text:synthesize?key=*"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/play_audio.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon128.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "read_the_selected_text": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Read the selected text in Speechy",
            "global": true
        }
    },
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png"
    }
}