TabSpeech

Read the text on the displayed tab

Was ist TabSpeech?

TabSpeech ist eine Chrome-Erweiterung, die von IIMURA Takuji entwickelt wurde, und ihr Hauptmerkmal ist "Read the text on the displayed tab".

Erweiterungsscreenshots

screenshot

TabSpeech-Erweiterungs-CRX-Datei herunterladen

Laden Sie TabSpeech-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name TabSpeech TabSpeech
ID ccojlmmbakjcoddbepmmogiobbmmhmjc
Offizielle URL https://chromewebstore.google.com/detail/tabspeech/ccojlmmbakjcoddbepmmogiobbmmhmjc
Beschreibung Read the text on the displayed tab
Dateigröße 87.98 KB
Installationsanzahl 3,670
Aktuelle Version 1.9.1
Letztes Update 2022-02-22
Veröffentlichungsdatum 2020-05-18
Bewertung 4.37/5 Insgesamt 19 Bewertungen
Entwickler IIMURA Takuji
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/limura/TabSpeech
Unterstützte Sprachen 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
}