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
官方網址 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"
            ]
        }
    ]
}