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!

Sound of Wordsとは何ですか?

Sound of WordsはBogdan Mazoureによって開発されたChromeの拡張機能で、その主な機能は「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

Sound of Words拡張機能のCRXファイルをダウンロード

Sound of Words拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Sound of Words Sound of Words
ID dpineadkcgmlikkepdpkbghpfminfiol
公式URL https://chrome.google.com/webstore/detail/sound-of-words/dpineadkcgmlikkepdpkbghpfminfiol
説明 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!
ファイルサイズ 535 KB
インストール数 29
現在のバージョン 1.0
最終更新日 2015-02-02
公開日 2015-02-02
開発者 Bogdan Mazoure
支払い方法 free
拡張機能のウェブサイト http://github.com/xXGh0stXx
対応言語 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"
            ]
        }
    ]
}