Sound of Words

Ever felt the website you are browsing or the book you are reading are speaking to you? Well, now you can finally learn the truth!

O que é Sound of Words?

Sound of Words é uma extensão do Chrome desenvolvida por Bogdan Mazoure, e sua principal característica é "Ever felt the website you are browsing or the book you are reading are speaking to you? Well, now you can finally learn the truth!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Sound of Words

Baixe arquivos de extensão Sound of Words 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

                        Ever felt the website you are browsing or the book you are reading are speaking to you? Well, now you can finally learn the truth!
 This little extension plays any text-based content it finds on a web page. So open up Facebook, Shakespeare's `Hamlet` or `Twilight` (please don't for the last one unless you really want to hear the parallel world), and listen to the magic :D
The details of how this little app works may be revealed in the future. Make sure to follow my Git Enjoy!                    

Informações Básicas da Extensão

Nome Sound of Words Sound of Words
ID dpineadkcgmlikkepdpkbghpfminfiol
URL Oficial https://chrome.google.com/webstore/detail/sound-of-words/dpineadkcgmlikkepdpkbghpfminfiol
Descrição Ever felt the website you are browsing or the book you are reading are speaking to you? Well, now you can finally learn the truth!
Tamanho do Arquivo 535 KB
Contagem de Instalações 29
Versão Atual 1.0
Última Atualização 2015-02-02
Data de Publicação 2015-02-02
Desenvolvedor Bogdan Mazoure
Tipo de Pagamento free
Site da Extensão http://github.com/xXGh0stXx
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sound of Words",
    "description": "Ever felt the website you are browsing or the book you are reading are speaking to you? Well, now you can finally learn the truth!",
    "version": "1.0",
    "browser_action": {
        "default_popup": "pages\/playPage.html",
        "default_title": "Play it!"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "pages\/js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        ""
    ],
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "pages\/js\/popup.js"
            ]
        }
    ]
}