Click by Voice

This Chrome browser extension provides support for activating links and other HTML elements using voice commands.

Click by Voice là gì?

Click by Voice là một tiện ích mở rộng Chrome được phát triển bởi mdbridge, và tính năng chính của nó là "This Chrome browser extension provides support for activating links and other HTML elements using voice commands.".

Ả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 Click by Voice

Tải xuống các tệp mở rộng Click by Voice 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

                        Click by Voice numbers each clickable or focusable item at all times and allows activating them via keyboard.  For example, to open a link numbered 13 in a new window, you could manually hit control shift space then type "13:w" into the resulting pop-up then hit enter.  In practice, a voice command like "window pick 1 3" would be used to type these keys.  

WARNING: this extension by itself provides no voice functionality; procurement of the needed voice commands is the user's responsibility. One recommended means of doing this is to use Vocola (http://vocola.net/). 

Supported functionality includes focusing input elements, clicking elements, opening links in the same tab/a new (focused) tab/a new window, and removing the keyboard focus from the current element.  For how to use Click by Voice, see https://github.com/mdbridge/click-by-voice/blob/master/README.md.  CbV provides functionality similar to that of Firefox's mouseless browsing extension for voice control.                    

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

Tên Click by Voice Click by Voice
ID dleiijbbjajmfcaiiiadgjpgfjmfdfen
URL Chính Thức https://chromewebstore.google.com/detail/click-by-voice/dleiijbbjajmfcaiiiadgjpgfjmfdfen
Mô tả This Chrome browser extension provides support for activating links and other HTML elements using voice commands.
Kích Thước Tệp 135 KB
Số Lần Cài Đặt 1,054
Phiên Bản Hiện Tại 0.23.4
Cập Nhật Lần Cuối 2021-11-26
Ngày Phát Hành 2019-04-07
Đánh Giá 3.78/5 Tổng số 9 Đánh Giá
Nhà Phát Triển mdbridge
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": "Click by Voice",
    "version": "0.23.4",
    "description": "This Chrome browser extension provides support for activating links and other HTML elements using voice commands.",
    "short_name": "CbV",
    "homepage_url": "https:\/\/github.com\/mdbridge\/click-by-voice",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "browser_action": {
        "default_title": "Click by Voice",
        "default_icon": {
            "38": "images\/icon_38.png"
        },
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            },
            "description": "Activate (e.g., click or focus) a hint"
        },
        "blur": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma"
            },
            "description": "Blur (remove keyboard focus from elements)"
        },
        "execute_command_from_clipboard": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period"
            },
            "description": "Activate (e.g., click or focus) a hint specified by clipboard"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "show_hints.css"
            ],
            "js": [
                "jquery-3.0.0.min.js",
                "utilities.js",
                "Dom_walk.js",
                "activate.js",
                "add_hint.js",
                "find_hint.js",
                "hints.js",
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-3.0.0.min.js",
            "defaults.js",
            "background-utilities.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}