TabSpeech

Read the text on the displayed tab

TabSpeechとは何ですか?

TabSpeechはIIMURA Takujiによって開発されたChromeの拡張機能で、その主な機能は「Read the text on the displayed tab」です。

拡張機能のスクリーンショット

screenshot

TabSpeech拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Text-to-Speech the text in the displayed tab using Web Speech API.

* Usage:

1. Select the range where you want to start reading
2. Click the PageAction icon (the black “reading” icon in the upper right) and press the “Speech” button

Press Stop to stop reading, Pause to pause, and Resume to resume from pause.


We are developing at: https://github.com/limura/TabSpeech/

The author is Japanese and can hardly speak foreign languages.
I would be happy if you could help with translation work and other corrections.
Please refer to the Japanese section for the detailed update history.                    

拡張機能の基本情報

名前 TabSpeech TabSpeech
ID ccojlmmbakjcoddbepmmogiobbmmhmjc
公式URL https://chromewebstore.google.com/detail/tabspeech/ccojlmmbakjcoddbepmmogiobbmmhmjc
説明 Read the text on the displayed tab
ファイルサイズ 87.98 KB
インストール数 3,670
現在のバージョン 1.9.1
最終更新日 2022-02-22
公開日 2020-05-18
評価 4.37/5 合計 19 レビュー
開発者 IIMURA Takuji
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/limura/TabSpeech
対応言語 en,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "name": "TabSpeech",
    "description": "__MSG_appDescription__",
    "version": "1.9.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon\/TabSpeechIcon16.png",
        "48": "icon\/TabSpeechIcon48.png",
        "128": "icon\/TabSpeechIcon128.png"
    },
    "page_action": {
        "default_title": "__MSG_PageActionDefaultTitle__",
        "default_popup": "popup.html",
        "default_icon": "icon\/TabSpeechIcon19.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "commands": {
        "start-speech": {
            "description": "__MSG_KeyboardShortcutNameStartSpeech__"
        },
        "stop-speech": {
            "description": "__MSG_KeyboardShortcutNameStopSpeech__"
        },
        "pause-speech": {
            "description": "__MSG_KeyboardShortcutNamePauseSpeech__"
        },
        "resume-speech": {
            "description": "__MSG_KeyboardShortcutNameResumeSpeech__"
        }
    },
    "manifest_version": 2
}