ReadX Text To Speech

Text to speech Extension

ReadX Text To Speech란 무엇입니까?

ReadX Text To Speech은(는) ReadX에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Text to speech Extension"입니다.

확장 프로그램 스크린샷

screenshot

ReadX Text To Speech 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Text to speech app.
Reads text using Google voices, or default system voice when offline.

Features
- Ability to replace any word so you are not stuck with default pronunciations or abbreviations.
- Starts reading instantly from the second you hit play, no matter the page size.
- you can select words to start reading from that location, if [Spacebar to Play] or [Drag to read] is enabled
- can be toggled on and off instantly, no need to refresh the page before use. (unless the extension was updated)
- displays estimated reading time and percent read in the title bar. 

New Features of Version 1.0.2 (iframes not supported)
- Automation tab settings
- Spacebar to play from selected location
- Configurable to automatically click on [next page] when finished reading current one (requires refresh)
* This works by getting element class name, if multiple elements have the same class name on page, this won't work.

New Features of Version 1.0.8
- added domain specific settings
- optimized code for even faster loading

New Features of Version 1.1.0
-  custom shortcut keys.

New in Version 1.1.1 - 1.1.4
- minor bug fixes

Note:
Some features may work differently inside iframes or Shadow DOM elements.

How to use:
Click anywhere on the page for it to start reading from that point, if you'd rather push [spacebar] after selecting the text you want read, you can go into options and uncheck [click to read] then hit save. 
You can also click the blue square on the bottom right to start reading from your selection or drag it to where you want to read from in case what you want to read is a link. Clicking on the blue square or the spacebar also toggles play/pause.                    

확장 프로그램 기본 정보

이름 ReadX Text To Speech ReadX Text To Speech
ID nnpkmeadcahjgbmiemkbdlbnkhkoinff
공식 URL https://chromewebstore.google.com/detail/readx-text-to-speech/nnpkmeadcahjgbmiemkbdlbnkhkoinff
설명 Text to speech Extension
파일 크기 208 KB
설치 횟수 128
현재 버전 1.1.4
최근 업데이트 2023-04-12
출시 날짜 2022-10-09
평점 4.75/5 총 4 개의 평점
개발자 ReadX
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://readit.js.org/policy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ReadX Text To Speech",
    "version": "1.1.4",
    "action": {
        "default_popup": "popup.html"
    },
    "description": "Text to speech Extension",
    "permissions": [
        "activeTab",
        "storage",
        "background",
        "webNavigation",
        "tabs",
        "ttsEngine",
        "tts"
    ],
    "tts_engine": {
        "voices": [
            {
                "voice_name": "Alice",
                "lang": "en-US",
                "event_types": [
                    "start",
                    "marker",
                    "end"
                ]
            },
            {
                "voice_name": "Pat",
                "lang": "en-US",
                "event_types": [
                    "end"
                ]
            }
        ]
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "commands": {
        "activateextension": {
            "suggested_key": {
                "default": "Ctrl+R"
            },
            "description": "Activate the extension"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 3
}