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とは何ですか?

Speakはimjasonhによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード

Speak拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Speak Speak
ID fdifnkjkobihiiogmkcfmlffdjbipfpn
公式URL https://chromewebstore.google.com/detail/speak/fdifnkjkobihiiogmkcfmlffdjbipfpn
説明 Simple extension to speak selected text, using Chrome's built-in TTS engine. Right-click a selection of text to read it. Or press…
ファイルサイズ 5.7 KB
インストール数 68
現在のバージョン 0.0.1
最終更新日 2017-05-15
公開日 2017-05-15
評価 3.67/5 合計 3 レビュー
開発者 imjasonh
Eメール [email protected]
支払い方法 free
対応言語 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
    }
}