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"
            ]
        }
    ]
}