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文件

下載Speechy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}