Talk 2 Me

Reads highlighted text in the browser.

Talk 2 Me là gì?

Talk 2 Me là một tiện ích mở rộng Chrome được phát triển bởi Reece, và tính năng chính của nó là "Reads highlighted text in the browser.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Talk 2 Me

Tải xuống các tệp mở rộng Talk 2 Me dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Talk 2 Me Talk 2 Me
ID cinafiioibibecaliaehfkbkjafaakak
URL Chính Thức https://chromewebstore.google.com/detail/talk-2-me/cinafiioibibecaliaehfkbkjafaakak
Mô tả Reads highlighted text in the browser.
Kích Thước Tệp 10.62 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-11-19
Ngày Phát Hành 2019-11-18
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Reece
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}