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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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