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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hmirin และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Speechy

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}