Wikipedia Pronouncer

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

O que é Wikipedia Pronouncer?

Wikipedia Pronouncer é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Adds a button to pronounce the topic of a wikipedia page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Wikipedia Pronouncer

Baixe arquivos de extensão Wikipedia Pronouncer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Wikipedia Pronouncer Wikipedia Pronouncer
ID gcaepekagnablmnckaiekfpjjpcikeib
URL Oficial https://chromewebstore.google.com/detail/wikipedia-pronouncer/gcaepekagnablmnckaiekfpjjpcikeib
Descrição Adds a button to pronounce the topic of a wikipedia page.
Tamanho do Arquivo 104 KB
Contagem de Instalações 24
Versão Atual 1.0
Última Atualização 2018-10-02
Data de Publicação 2018-10-02
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}