TabSpeech

Read the text on the displayed tab

TabSpeech란 무엇입니까?

TabSpeech은(는) IIMURA Takuji에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read the text on the displayed tab"입니다.

확장 프로그램 스크린샷

screenshot

TabSpeech 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}