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!

¿Qué es Sound of Words?

Sound of Words es una extensión de Chrome desarrollada por Bogdan Mazoure, y su función principal es "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 Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Sound of Words

Descarga archivos de extensión Sound of Words en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Sound of Words Sound of Words
ID dpineadkcgmlikkepdpkbghpfminfiol
URL Oficial https://chrome.google.com/webstore/detail/sound-of-words/dpineadkcgmlikkepdpkbghpfminfiol
Descripción 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!
Tamaño del Archivo 535 KB
Cantidad de Instalaciones 29
Versión Actual 1.0
Última Actualización 2015-02-02
Fecha de Publicación 2015-02-02
Desarrollador Bogdan Mazoure
Tipo de Pago free
Sitio Web de la Extensión http://github.com/xXGh0stXx
Idiomas Soportados 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"
            ]
        }
    ]
}