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.

Vad är Speechy?

Speechy är en Chrome-tillägg utvecklad av hmirin, och dess huvudfunktion är "Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.".

Tilläggsskärmbilder

screenshot

Ladda ner Speechy-förlängningens CRX-fil

Ladda ner Speechy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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)                    

Grundläggande Information om Tillägg

Namn Speechy Speechy
ID flpjdaabfegkkifhogoilelmjcipihnp
Officiell webbadress https://chromewebstore.google.com/detail/speechy/flpjdaabfegkkifhogoilelmjcipihnp
Beskrivning Wrapper for Paid High Quality Text-to-Speech (TTS) APIs such as Google and OpenAI. To use this extension, you need your API key.
Filstorlek 465 KB
Antal Installationer 739
Aktuell Version 0.2.1
Senast Uppdaterad 2024-02-22
Publiceringsdatum 2018-07-19
Betyg 3.92/5 Totalt 12 Betyg
Utvecklare hmirin
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://hmirin.github.io/speechy/
Stödda Språk 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"
    }
}