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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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