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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Text-to-Speech (TTS) extension that transforms highlighted text into high-quality natural sounding audio using Google Cloud's…"।

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

screenshot

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

crx प्रारूप में Wavenet for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}