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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bogdan Mazoure และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sound of Words

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}