Text Narrator

This extension narrates text on the page.

Text Narrator क्या है?

Text Narrator Jeffrey Yang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension narrates text on the page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Text Narrator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is an open source simple text-to-speech narrator that uses Chrome's built-in Text-to-Speech API.  

Tested on Windows 8 and OSX so far. Please report any issues.

Source code and issue tracking are available here:
https://github.com/sajacy/textnarrator-chrome-extension                    

एक्सटेंशन की मूल जानकारी

नाम Text Narrator Text Narrator
ID gmachijmpknamgdoelcmkcepbjilhfoe
आधिकारिक URL https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe
विवरण This extension narrates text on the page.
फ़ाइल का आकार 18.79 KB
स्थापना संख्या 50,000
वर्तमान संस्करण 1.0
अंतिम अपडेट 2014-01-20
प्रकाशन तिथि 2014-01-20
रेटिंग 2.94/5 कुल 54 रेटिंग्स
डेवलपर Jeffrey Yang
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Narrator",
    "description": "This extension narrates text on the page.",
    "version": "1.0",
    "background": {
        "scripts": [
            "narrate.js",
            "background.js"
        ]
    },
    "icons": {
        "16": "img\/speak16.png",
        "48": "img\/speak48.png",
        "128": "img\/speak.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "tts",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_icon": "img\/speak.png",
        "default_popup": "popup.html"
    }
}