Text to Speech (TTS)

A text to speech tool with natural sounding voices.

什麼是Text to Speech (TTS)?

Text to Speech (TTS)是由Sevina開發的Chrome擴展程式,該擴展的主要功能是“A text to speech tool with natural sounding voices.”。

擴展截圖

screenshot
screenshot
screenshot

下載Text to Speech (TTS)擴展crx文件

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

擴展使用說明

                        Text to Speech (TTS) is a text-to-speech extension with natural sounding voices by using HTML5 TTS APIs.

You can use this extension in a standalone interface or within web pages. If you press the toolbar button the first interface opens up where you can enter a desired text for TTS. On the other hand, within a webpage, once you select a text, a placeholder speaker icon appears. Once you click the speaker icon, the text-to-speech starts. For the highlight feature to work correctly, please select text paragraph-by-paragraph. Please note that the highlight feature is still in Beta and may not work properly on all websites. There are also a few options related to the in-page text-to-speech which can be adjusted from the extension settings page.

To report Bugs, please visit the addon's homepage (https://mybrowseraddon.com/text-to-speech.html) and fill out the bug report form.                    

擴展基本資訊

名稱 Text to Speech (TTS) Text to Speech (TTS)
ID cpnomhnclohkhnikegipapofcjihldck
官方網址 https://chromewebstore.google.com/detail/text-to-speech-tts/cpnomhnclohkhnikegipapofcjihldck
簡介 A text to speech tool with natural sounding voices.
檔案大小 60.45 KB
安裝次數 30,000
目前版本 0.2.7
更新時間 2023-09-19
上架時間 2020-02-11
評分 3.54/5 共 13 次評分
開發者 Sevina
電子郵箱 [email protected]
付費類型 free
擴展官網 https://mybrowseraddon.com/text-to-speech.html
說明頁面URL https://mybrowseraddon.com/text-to-speech.html
隱私政策頁面URL https://mybrowseraddon.com/privacy-policy/developer/sevina.html
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2.7",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Text to Speech (TTS)",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/text-to-speech.html",
    "description": "A text to speech tool with natural sounding voices.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "data\/content_script\/icons\/*.png",
                "data\/content_script\/icons\/loading.gif"
            ]
        }
    ],
    "action": {
        "default_title": "Text to Speech",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "css": [
                "data\/content_script\/inject.css"
            ],
            "js": [
                "data\/content_script\/resources\/getboundingbox.js",
                "data\/content_script\/inject.js",
                "data\/interface\/resources\/audio.js",
                "data\/interface\/resources\/tts.js",
                "data\/interface\/resources\/language.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}