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!

Cos'è Sound of Words?

Sound of Words è un'estensione di Chrome sviluppata da Bogdan Mazoure, e la sua funzione principale è "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!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sound of Words

Scarica i file di estensione Sound of Words in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Sound of Words Sound of Words
ID dpineadkcgmlikkepdpkbghpfminfiol
URL Ufficiale https://chrome.google.com/webstore/detail/sound-of-words/dpineadkcgmlikkepdpkbghpfminfiol
Descrizione 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!
Dimensione del File 535 KB
Conteggio Installazioni 29
Versione Corrente 1.0
Ultimo Aggiornamento 2015-02-02
Data di Pubblicazione 2015-02-02
Sviluppatore Bogdan Mazoure
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/xXGh0stXx
Lingue Supportate 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"
            ]
        }
    ]
}