Speak

Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…

Speak là gì?

Speak là một tiện ích mở rộng Chrome được phát triển bởi imjasonh, và tính năng chính của nó là "Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…".

Tải xuống tệp CRX của tiện ích mở rộng Speak

Tải xuống các tệp mở rộng Speak 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

                        Simple extension to speak selected text, using Chrome's built-in TTS engine.

Right-click a selection of text to read it. Or press ctrl+shift+space to start/stop reading.                    

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

Tên Speak Speak
ID fdifnkjkobihiiogmkcfmlffdjbipfpn
URL Chính Thức https://chromewebstore.google.com/detail/speak/fdifnkjkobihiiogmkcfmlffdjbipfpn
Mô tả Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…
Kích Thước Tệp 5.7 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2017-05-15
Ngày Phát Hành 2017-05-15
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển imjasonh
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Speak",
    "version": "0.0.1",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "tts",
        ""
    ],
    "icons": {
        "16": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "startstop": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            },
            "description": "Start\/stop reading"
        },
        "faster": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period"
            },
            "description": "Increase speed"
        },
        "slower": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma"
            },
            "description": "Decrease speed"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}