BBO Visual Assist

BBO Visual Assist

BBO Visual Assist là gì?

BBO Visual Assist là một tiện ích mở rộng Chrome được phát triển bởi John Lambe, và tính năng chính của nó là "BBO Visual Assist".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng BBO Visual Assist

Tải xuống các tệp mở rộng BBO Visual Assist 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

                        Assists visually challenged users to play Bridge on the BBO (BridgeBase Online) website by:

1.	Supporting voice commands and keyboard shortcuts.
2.	Reading cards, bids, score etc. under the mouse cursor.
3.	Reading chat messages and other unsolicited messages
4.	Introducing each board, the vulnerability, and the dealer.
5.	Giving a brief description of your hand and dummy’s.
6.	Describing actions such as bids, cards played, alerts and claims.

The extension can be tailored to the required level of assistance by enabling or disabling the appropriate functions using the extension’s pop-up window.  

Full documentation is available via the extension's pop-up window. Use the jigsaw symbol in the top right toolbar of Google Chrome to display the pop-up window and to pin the pop-up window to the toolbar.

-----------------------------------------------------------------------------------------------------------------------------------------------
Version 6.8 (4th Mar 2024)
•	Cache of out-of-date elements cleared on logoff so now possible to log back in without refreshing the browser page.

Version 6.7 (14th Feb 2024)
•	Required updated since BBO changed so some elements are not available until after the user logs into BBO.

Version 6.6 (6th Sept 2023)
•	Reading out of the cards in a suit slowed down.

Version 6.5 (14th July 2023)
•	Board described again if player re-joins a board.
•	Fixed bug which left the microphone active if no speech for 9 seconds

Version 6.4 (22nd Jun 2023)
•	Voice command 'Auction' corrected to report 3 passes if you're in the pass-out seat.
•	Cut and Paste commands will not be beeped; similar for other standard keys.
•	Can no longer used Ctrl+F5 to hear dummy's spades prior to start of the board.
•	Voice commands to play cards patched so suit isn’t always required.

Version 6.3  (18th Jun 2023)
•	Fixed auction speech actions that stopped working due to BBO changing the internal layout of the auction box.
•	During testing detected that the speech recognition fails to recognise numbers from one to ten unless followed by the suit. This could not be fixed as it appears to be a problem with the Chrome API so will need to be further investigated.
•	Pressing the  key will now just perform a single action even if a dialogue box is open.

Version 6.2  (22nd Jan 2023)

•	Bug Fix: Mouse clicks within the phrase translation page stopped working under latest Chrome Build 109.0.5414.75

Version 6.1
•	Bug Fix: Mouse clicks stopped working under latest Chrome Build 109.0.5414.75

Version 6.0 
•	Keyboard entry for bids and card playing.
•	Voice commands to repeat bids or the cards played.
•	Voice commands to announce who’s turn it is to play and the number of tricks won.
•	Voice command to announce the number of minutes remaining in the current round.
•	Additional error messages.                    

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

Tên BBO Visual Assist BBO Visual Assist
ID kdknilcahppjpicfclgaenphlcdjkbcm
URL Chính Thức https://chromewebstore.google.com/detail/bbo-visual-assist/kdknilcahppjpicfclgaenphlcdjkbcm
Mô tả BBO Visual Assist
Kích Thước Tệp 413 KB
Số Lần Cài Đặt 119
Phiên Bản Hiện Tại 6.8
Cập Nhật Lần Cuối 2024-03-05
Ngày Phát Hành 2020-11-10
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển John Lambe
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",
    "manifest_version": 3,
    "name": "BBO Visual Assist",
    "version": "6.8",
    "description": "BBO Visual Assist",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/micOff.gif",
                "images\/micOff.png",
                "images\/micPulse.png",
                "images\/micPulse.gif",
                "images\/micError.png"
            ],
            "matches": [
                "https:\/\/www.bridgebase.com\/*"
            ]
        }
    ],
    "action": {
        "default_title": "BBO Visual Assist",
        "default_popup": "popup.html",
        "default_icon": "images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.bridgebase.com\/v3\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "BVAClass.js",
                "StopWatch.js",
                "mouseReader.js",
                "translation.js",
                "speechToText.js",
                "constants.js",
                "helperJCL.js",
                "voiceCmds.js",
                "BBOA_Content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "tts",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.bridgebase.com\/v3\/*"
    ]
}