Text to Speech (TTS)

A text to speech tool with natural sounding voices.

Text to Speech (TTS) là gì?

Text to Speech (TTS) là một tiện ích mở rộng Chrome được phát triển bởi Sevina, và tính năng chính của nó là "A text to speech tool with natural sounding voices.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Text to Speech (TTS)

Tải xuống các tệp mở rộng Text to Speech (TTS) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Text to Speech (TTS) Text to Speech (TTS)
ID cpnomhnclohkhnikegipapofcjihldck
URL Chính Thức https://chromewebstore.google.com/detail/text-to-speech-tts/cpnomhnclohkhnikegipapofcjihldck
Mô tả A text to speech tool with natural sounding voices.
Kích Thước Tệp 60.45 KB
Số Lần Cài Đặt 30,000
Phiên Bản Hiện Tại 0.2.7
Cập Nhật Lần Cuối 2023-09-19
Ngày Phát Hành 2020-02-11
Đánh Giá 3.54/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Sevina
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/text-to-speech.html
URL Trang Trợ Giúp https://mybrowseraddon.com/text-to-speech.html
URL Trang Chính Sách Bảo Mật https://mybrowseraddon.com/privacy-policy/developer/sevina.html
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}