Wikipedia Pronouncer

Adds a button to pronounce the topic of a wikipedia page.

Wikipedia Pronouncerとは何ですか?

Wikipedia PronouncerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Adds a button to pronounce the topic of a wikipedia page.」です。

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

screenshot

Wikipedia Pronouncer拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Adds a button next on a Wikipedia page next to the topic header that allows for text to speech of the topic name. Options allow changing the language, volume, and speed of the voice. NOTE: Language selection doesn't currently change anything. Will fix in future.                    

拡張機能の基本情報

名前 Wikipedia Pronouncer Wikipedia Pronouncer
ID gcaepekagnablmnckaiekfpjjpcikeib
公式URL https://chromewebstore.google.com/detail/wikipedia-pronouncer/gcaepekagnablmnckaiekfpjjpcikeib
説明 Adds a button to pronounce the topic of a wikipedia page.
ファイルサイズ 104 KB
インストール数 24
現在のバージョン 1.0
最終更新日 2018-10-02
公開日 2018-10-02
開発者 Unknown
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Pronouncer",
    "version": "1.0",
    "description": "Adds a button to pronounce the topic of a wikipedia page.",
    "permissions": [
        "storage",
        "ttsEngine"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/en.wikipedia.org\/wiki\/*"
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "icon32.png",
        "icon128.png",
        "icon64.png"
    ]
}