Let's JusTalk to the Web

A vocal Web interface. Press Ctrl+space and say, 'Hello'

Let's JusTalk to the Web là gì?

Let's JusTalk to the Web là một tiện ích mở rộng Chrome được phát triển bởi Martin J Wheatman, và tính năng chính của nó là "A vocal Web interface. Press Ctrl+space and say, 'Hello'".

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

Tải xuống tệp CRX của tiện ích mở rộng Let's JusTalk to the Web

Tải xuống các tệp mở rộng Let's JusTalk to the Web 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 is an experimental vocal web driver. If it works for you please tell others, if you have difficulty please tell me!

Accessibility software is normally directed at making blind and partially sighted users, and those with difficulty in using keyboards, into using an interface for dextrous, sighted people.

By pressing Ctrl-Space, this extension records an utterance, such as "click on okay" and operates the page as if it has been instigated by the mouse. This extension currently supports the notion of page navigation, clickable widgets, i.e. links and buttons - checkboxes and radio buttons next; and, value holding widgets, i.e. input text boxes and text areas.

Typical supported commands are as follows. The most up to date description is provided by the extension itself - just ask, "how do i interact with this page"
  i) navigation commands:
    go to X.Y.Z
    go back
    go forward
    click on the X link
 ii) page description:
    describe the page
    do you have X (where X may be "a date button")
iii) page interaction:
    click on X (where X may be "X" or "the X button")
    set the value of X to Y
    get the value of X

Following speech act theory, all utterances are supported by a positive reply, such as "okay, the date button has been clicked", or "sorry, I do not understand".

This extension is EXPERIMENTAL. It also supports simple lists of instructions, i.e. unnamed functions, aka lambdas, such as "set the value of name to Martin and then click on okay". The eventual aim of this extension is at introducing all the Enguage(tm) software for Android onto the web (see video below), and thus interfacing with software purely through voice.                    

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

Tên Let's JusTalk to the Web Let's JusTalk to the Web
ID leoimjokapbleghdnkgnomeoaaabhaco
URL Chính Thức https://chromewebstore.google.com/detail/lets-justalk-to-the-web/leoimjokapbleghdnkgnomeoaaabhaco
Mô tả A vocal Web interface. Press Ctrl+space and say, 'Hello'
Kích Thước Tệp 194 KB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 0.98.4
Cập Nhật Lần Cuối 2019-08-23
Ngày Phát Hành 2019-08-20
Nhà Phát Triển Martin J Wheatman
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Let's JusTalk to the Web",
    "short_name": "JusTalk",
    "description": "A vocal Web interface. Press Ctrl+space and say, 'Hello'",
    "version": "0.98.4",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "background": {
        "scripts": [
            "kbTx.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "interp.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contentSettings",
        "desktopCapture",
        "tabCapture",
        "tabs",
        "tts"
    ],
    "browser_action": {
        "default_icon": "images\/lbolt512.png",
        "default_title": "Press Ctrl+Space and say, 'Hello'"
    },
    "commands": {
        "enguage": {
            "suggested_key": {
                "default": "Ctrl+Space",
                "mac": "MacCtrl+Space"
            },
            "description": "single utterance"
        }
    },
    "icons": {
        "16": "images\/lbolt16.png",
        "48": "images\/lbolt48.png",
        "128": "images\/lbolt128.png",
        "512": "images\/lbolt512.png"
    }
}