Talk 2 Me

Reads highlighted text in the browser.

Talk 2 Me क्या है?

Talk 2 Me Reece द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reads highlighted text in the browser."।

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

screenshot

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

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

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

                        This extension adds a context menu item when text is highlighted. There is another added while text is being read. There is a shortcut with ctrl+shift+space that will start/stop reading as well.

The extension reads all text across multiple lines so some formats prove troublesome (eg a reddit comment thread with small links between chunks of text).

known bugs:
text containing "<" will stop reading at that character (possibly other characters that are not escaped)                    

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

नाम Talk 2 Me Talk 2 Me
ID cinafiioibibecaliaehfkbkjafaakak
आधिकारिक URL https://chromewebstore.google.com/detail/talk-2-me/cinafiioibibecaliaehfkbkjafaakak
विवरण Reads highlighted text in the browser.
फ़ाइल का आकार 10.62 KB
स्थापना संख्या 26
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2019-11-19
प्रकाशन तिथि 2019-11-18
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Reece
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Talk 2 Me",
    "version": "1.0.0",
    "description": "Reads highlighted text in the browser.",
    "icons": {
        "16": "32.png",
        "32": "32.png",
        "64": "64.png",
        "128": "128.png"
    },
    "commands": {
        "exec_T2M": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "Command+Shift+Space"
            },
            "description": "Execute function"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "Execute function"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "32": "32.png"
        },
        "default_title": "Read highlighted text",
        "default_popup": "options.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ]
}