Wavenet for Chrome

Text-to-Speech (TTS) extension that transforms highlighted text into high-quality natural sounding audio using Google Cloud's…

Wavenet for Chrome란 무엇입니까?

Wavenet for Chrome은(는) Michael Poirier-Ginter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Text-to-Speech (TTS) extension that transforms highlighted text into high-quality natural sounding audio using Google Cloud's…"입니다.

확장 프로그램 스크린샷

screenshot

Wavenet for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Text-to-Speech (TTS) extension that transforms highlighted text into high-quality natural sounding audio using Google Cloud's Text-to-Speech.

You need to create your own API Key in order to use this extension (see the included video for instructions).

Features
- Support for all Google WaveNet, Neural2, News, Studio voices and languages.
- Adjustable pitch and speed.
- Download selected text to an MP3 file.
- SSML support
- Shortcut to read aloud (Cmd+Shift+S on macOS and Ctrl+Shift+S on windows)
- Shortcut to download selected text (Cmd+Shift+E on macOS and Ctrl+Shift+E on windows)
- Chunk selected text into sentences to bypass the 5000 character limit and lower usage cost.                    

확장 프로그램 기본 정보

이름 Wavenet for Chrome Wavenet for Chrome
ID iefankigbnlnlaolflbcopliocibkffc
공식 URL https://chromewebstore.google.com/detail/wavenet-for-chrome/iefankigbnlnlaolflbcopliocibkffc
설명 Text-to-Speech (TTS) extension that transforms highlighted text into high-quality natural sounding audio using Google Cloud's…
파일 크기 4.59 MB
설치 횟수 12,898
현재 버전 12
최근 업데이트 2023-07-30
출시 날짜 2020-02-15
평점 4.68/5 총 73 개의 평점
개발자 Michael Poirier-Ginter
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wavenet-for-chrome/extension
도움말 페이지 URL https://github.com/wavenet-for-chrome/extension/discussions
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wavenet for Chrome",
    "version": "12",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "downloads",
        "storage",
        "activeTab",
        "scripting",
        "offscreen"
    ],
    "commands": {
        "readAloudShortcut": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Read aloud"
        },
        "downloadShortcut": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Download"
        }
    },
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_title": "Wavenet for Chrome",
        "default_popup": "assets\/popup.html",
        "default_icon": "assets\/icons\/icon_1000.png"
    },
    "icons": {
        "16": "assets\/icons\/icon_16.png",
        "19": "assets\/icons\/icon_19.png",
        "38": "assets\/icons\/icon_38.png",
        "48": "assets\/icons\/icon_48.png",
        "128": "assets\/icons\/icon_128.png",
        "1000": "assets\/icons\/icon_1000.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/styles.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/pgmichael\/wavenet-for-chrome"
}