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!

Was ist Sound of Words?

Sound of Words ist eine Chrome-Erweiterung, die von Bogdan Mazoure entwickelt wurde, und ihr Hauptmerkmal ist "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!".

Erweiterungsscreenshots

screenshot

Sound of Words-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sound of Words-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Sound of Words Sound of Words
ID dpineadkcgmlikkepdpkbghpfminfiol
Offizielle URL https://chrome.google.com/webstore/detail/sound-of-words/dpineadkcgmlikkepdpkbghpfminfiol
Beschreibung 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!
Dateigröße 535 KB
Installationsanzahl 29
Aktuelle Version 1.0
Letztes Update 2015-02-02
Veröffentlichungsdatum 2015-02-02
Entwickler Bogdan Mazoure
Zahlungsart free
Erweiterungswebsite http://github.com/xXGh0stXx
Unterstützte Sprachen 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"
            ]
        }
    ]
}