Talk 2 Me

Reads highlighted text in the browser.

Talk 2 Meとは何ですか?

Talk 2 MeはReeceによって開発されたChromeの拡張機能で、その主な機能は「Reads highlighted text in the browser.」です。

拡張機能のスクリーンショット

screenshot

Talk 2 Me拡張機能のCRXファイルをダウンロード

Talk 2 Me拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}