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 là gì?

Sound of Words là một tiện ích mở rộng Chrome được phát triển bởi Bogdan Mazoure, và tính năng chính của nó là "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!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sound of Words

Tải xuống các tệp mở rộng Sound of Words dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sound of Words Sound of Words
ID dpineadkcgmlikkepdpkbghpfminfiol
URL Chính Thức https://chrome.google.com/webstore/detail/sound-of-words/dpineadkcgmlikkepdpkbghpfminfiol
Mô tả 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!
Kích Thước Tệp 535 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-02-02
Ngày Phát Hành 2015-02-02
Nhà Phát Triển Bogdan Mazoure
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/xXGh0stXx
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}