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'est-ce que Sound of Words ?

Sound of Words est une extension Chrome développée par Bogdan Mazoure, et sa fonction principale est "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!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Sound of Words

Téléchargez les fichiers d'extension Sound of Words au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Sound of Words Sound of Words
ID dpineadkcgmlikkepdpkbghpfminfiol
URL Officiel https://chrome.google.com/webstore/detail/sound-of-words/dpineadkcgmlikkepdpkbghpfminfiol
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!
Taille du Fichier 535 KB
Nombre d'Installations 29
Version Actuelle 1.0
Dernière Mise à Jour 2015-02-02
Date de Publication 2015-02-02
Développeur Bogdan Mazoure
Type de Paiement free
Site Web de l'Extension http://github.com/xXGh0stXx
Langues Prises en Charge 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"
            ]
        }
    ]
}