TabSpeech

Read the text on the displayed tab

TabSpeech क्या है?

TabSpeech IIMURA Takuji द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Read the text on the displayed tab"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TabSpeech एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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
}