Ondoku (Voice Reading)

Turn selected text in a web site into voice speech using ResponsiveVoice.JS

Ondoku (Voice Reading)とは何ですか?

Ondoku (Voice Reading)はHinaserによって開発されたChromeの拡張機能で、その主な機能は「Turn selected text in a web site into voice speech using ResponsiveVoice.JS」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Ondoku (Voice Reading)拡張機能のCRXファイルをダウンロード

Ondoku (Voice Reading)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ### Summary

Text to speech extension for browsers, thanks to API by ResponsiveVoice.js.

The feature is simple.
When you make a text selection, the text speaks.

TTS(Text To Speech) functionality comes from ResponsiveVoiceJS.
So if you feel that this extension is useful, please give thanks to the original API provider http://responsivevoice.org

To toggle on/off this extension, please click a speaker button on the browser's toolbar button.

By default, this extension is disabled. So please switch on by clicking the speaker icon on browser toolbar

### Powered by

- ResponsiveVoiceJS for voice data [http://responsivevoice.org/]
- guessLanguage.js for detecting language of selected text [https://github.com/richtr/guessLanguage.js]

### Note

Please note that there are some languages with multiple associated voices like English.
You can configure which voice is preferred with those text.

For English:
 - UK English Female (default)
 - UK English Male
 - US English Female
 - Australian Female

For Portuguese:
 - Brazilian Portuguese Female
 - Portuguese Female (default)

For Spanish:
 - Spanish Female (default)
 - Spanish Latin American Female

For Serbo-Croatian:
 - Montenegrin Male
 - Serbo-Croatian Male (default)
 - Bosnian Male

For Romanian:
 - Moldavian Male
 - Romanian Male (default)

Additionally, auto text language detection cannot identify text written in "Hatian Creole".
So if you would like to hear voice of Hatian Creole, please disable "Auto detect language" option and set the language manually.

### Supported voices

The original ResponsiveVoiceJS API supports:


 - Afrikaans Male
 - Albanian Male
 - Arabic Male
 - Armenian Male
 - Australian Female
 - Bosnian Male
 - Brazilian Portuguese Female
 - Catalan Male
 - Chinese Female
 - Croatian Male
 - Czech Female
 - Danish Female
 - Deutsch Female
 - Dutch Female
 - Esperanto Male
 - Finnish Female
 - French Female
 - Greek Female
 - Hatian Creole Female
 - Hindi Female
 - Hungarian Female
 - Icelandic Male
 - Indonesian Female
 - Italian Female
 - Japanese Female
 - Korean Female
 - Latin Female
 - Latvian Male
 - Macedonian Male
 - Moldavian Male
 - Montenegrin Male
 - Norwegian Female
 - Polish Female
 - Portuguese Female
 - Romanian Male
 - Russian Female
 - Serbian Male
 - Serbo-Croatian Male
 - Slovak Female
 - Spanish Female
 - Spanish Latin American Female
 - Swahili Male
 - Swedish Female
 - Tamil Male
 - Thai Female
 - Turkish Female
 - UK English Female
 - UK English Male
 - US English Female (Default voice)
 - Vietnamese Male
 - Welsh Male                    

拡張機能の基本情報

名前 Ondoku (Voice Reading) Ondoku (Voice Reading)
ID hbmpimoejgmngemhjngmbpmkgoleaajn
公式URL https://chrome.google.com/webstore/detail/ondoku-voice-reading/hbmpimoejgmngemhjngmbpmkgoleaajn
説明 Turn selected text in a web site into voice speech using ResponsiveVoice.JS
ファイルサイズ 232 KB
インストール数 430
現在のバージョン 0.0.2
最終更新日 2019-06-16
公開日 2019-06-16
評価 3.35/5 合計 17 レビュー
開発者 Hinaser
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Hinaser/ondoku
対応言語 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "0.0.2",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "48.0",
            "strict_max_version": "*"
        }
    },
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/Hinaser\/ondoku",
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "lib\/images\/speaker_mute_16.png"
        },
        "default_title": "__MSG_extensionName__",
        "default_popup": "browser-action\/popup.html"
    },
    "background": {
        "page": "background\/main.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "lib\/javascripts\/responsivevoice.js",
                "lib\/javascripts\/_languageData.js",
                "lib\/javascripts\/guessLanguage.js",
                "lib\/javascripts\/countryCode2voiceLocale.js",
                "lib\/javascripts\/jquery-3.1.0.min.js",
                "lib\/javascripts\/jquery-ui.min.js",
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "web_accessible_resources": [
        "lib\/images\/play_voice_48.png",
        "lib\/images\/stop_voice_48.png"
    ]
}